/* =====================================================
   45°NORD AVENTURE — V3
   Thème sable & topographie · d'après la maquette client
   Polices : Viga (titres) · DM Sans (texte) · Just Another Hand (accent)
   ===================================================== */

/* ---------- POLICES LOCALES ---------- */
@font-face {
  font-family: "Viga";
  src: url("../assets/police/Viga/Viga-Regular.ttf") format("truetype");
  font-weight: 400; font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("../assets/police/DM_Sans/static/DMSans-Regular.ttf") format("truetype");
  font-weight: 400; font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("../assets/police/DM_Sans/static/DMSans-Medium.ttf") format("truetype");
  font-weight: 500; font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("../assets/police/DM_Sans/static/DMSans-SemiBold.ttf") format("truetype");
  font-weight: 600; font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("../assets/police/DM_Sans/static/DMSans-Bold.ttf") format("truetype");
  font-weight: 700; font-display: swap;
}
@font-face {
  font-family: "Just Another Hand";
  src: url("../assets/police/Just_Another_Hand/JustAnotherHand-Regular.ttf") format("truetype");
  font-weight: 400; font-display: swap;
}

/* ---------- VARIABLES ---------- */
:root {
  --sand:      #cbbd93;   /* fond de marque */
  --sand-2:    #d5c9a3;
  --sand-3:    #bdad7f;
  --cream:     #f4eeddf2; /* cartes ivoire */
  --cream-solid:#f4eedd;
  --ink:       #211d15;   /* texte / boutons sombres */
  --ink-soft:  #57503f;
  --muted:     #6d6552;
  --accent:    #d97a34;   /* terracotta */
  --accent-2:  #e68a41;
  --cta-hover: #ff751f;   /* orange de marque — survol des CTA */
  --line:      rgba(33,29,21,.16);
  --line-soft: rgba(33,29,21,.10);

  --green:  #4e9a51;
  --blue:   #3f7cc0;
  --orange: #e08a3c;
  --red:    #c0392b;

  --radius:    14px;
  --radius-lg: 24px;
  --maxw:      1200px;
  --shadow:    0 18px 44px rgba(33,29,21,.18);
  --shadow-lg: 0 30px 70px rgba(33,29,21,.30);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "DM Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--ink);
  background: var(--sand);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Voile topographique global */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url("../assets/img/topo.png") repeat;
  background-size: 760px;
  opacity: .10;
  pointer-events: none;
  z-index: 0;
}
body > * { position: relative; z-index: 1; }

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

h1, h2, h3, h4 {
  font-family: "Viga", "DM Sans", sans-serif;
  font-weight: 400;
  line-height: 1.06;
  margin: 0;
  letter-spacing: .005em;
}

.container { width: min(100% - 2.5rem, var(--maxw)); margin-inline: auto; }

/* Titre de section */
.section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto clamp(2.2rem, 5vw, 3.4rem); }
.section-head h2 {
  font-size: clamp(2rem, 5.2vw, 3.4rem);
  text-transform: uppercase;
  letter-spacing: .02em;
}
.eyebrow {
  font-family: "Just Another Hand", cursive;
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  color: var(--accent);
  line-height: 1;
  display: inline-block;
  margin-bottom: .2rem;
}
.kicker {
  display: inline-block;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  font-size: .72rem;
  color: var(--accent);
  margin-bottom: .7rem;
}
.section-head p { color: var(--ink-soft); font-size: 1.05rem; margin: .8rem auto 0; max-width: 52ch; }

/* Le petit "45°N" manuscrit qu'on réutilise */
.hand { font-family: "Just Another Hand", cursive; font-weight: 400; }

/* ---------- BOUTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  font-family: "Viga", sans-serif;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: .9rem;
  padding: .95rem 1.7rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn--sm { padding: .6rem 1.15rem; font-size: .78rem; }
.btn--solid { background: var(--ink); color: #f4eedd; }
.btn--solid:hover { background: var(--cta-hover); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--accent { background: var(--accent); color: #fff; }
.btn--accent:hover { background: var(--cta-hover); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--outline { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn--outline:hover { background: var(--ink); color: #f4eedd; transform: translateY(-2px); }
.btn--light { border-color: rgba(255,255,255,.7); color: #fff; background: rgba(255,255,255,.06); backdrop-filter: blur(2px); }
.btn--light:hover { background: #fff; color: var(--ink); transform: translateY(-2px); }
.btn--full { width: 100%; }

/* ---------- HEADER ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 80;
  padding: .55rem 0;
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
}
.site-header.scrolled {
  background: rgba(203,189,147,.94);
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 24px rgba(33,29,21,.22);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 66px;
}
.brand { display: flex; align-items: center; gap: .65rem; }
.brand__logo { height: 50px; width: auto; flex: none; }
/* Logo noir par défaut ; blanc au-dessus du hero (header transparent) et dans le footer sombre */
.site-header .brand__logo { filter: brightness(0) invert(1); transition: filter .3s ease; }
.site-header.scrolled .brand__logo { filter: none; }
.brand__logo--footer { height: 62px; filter: brightness(0) invert(1); }
.brand__text { display: flex; flex-direction: column; line-height: 1.02; }
.brand__name { font-family: "Viga", sans-serif; font-size: 1.12rem; letter-spacing: .02em; }
.brand__name b { color: var(--accent); font-weight: 400; }
.brand__tag { font-size: .58rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-soft); }

.main-nav { display: flex; align-items: center; gap: 1.7rem; }
.main-nav > a:not(.btn) {
  font-weight: 500;
  font-size: .95rem;
  color: var(--ink);
  position: relative;
  padding: .2rem 0;
}
.main-nav > a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px; background: var(--accent);
  transition: width .25s ease;
}
.main-nav > a:not(.btn):hover::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: 0; cursor: pointer;
  padding: 8px;
  position: relative;
  z-index: 90; /* reste au-dessus du panneau ouvert pour pouvoir refermer */
}
.nav-toggle span { width: 26px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: transform .3s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(20,17,11,.55) 0%, rgba(20,17,11,.25) 40%, rgba(20,17,11,.72) 100%);
}
.hero__content {
  position: relative; z-index: 2;
  text-align: center;
  color: #fff;
  padding-top: 5rem;
}
.hero__eyebrow {
  font-family: "Just Another Hand", cursive;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #f0d9ad;
  margin: 0 0 .3rem;
  line-height: 1;
}
.hero__title {
  font-size: clamp(2.3rem, 6.3vw, 5rem);
  text-transform: uppercase;
  letter-spacing: .01em;
  margin: 0 auto;
  max-width: 16ch;
  text-shadow: 0 4px 30px rgba(0,0,0,.4);
}
.hero__lead {
  max-width: 46ch;
  margin: 1.4rem auto 0;
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  color: rgba(255,255,255,.92);
}
.hero__actions {
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center;
  margin-top: 2.2rem;
}
.hero__scroll {
  position: absolute; left: 50%; bottom: 1.6rem; transform: translateX(-50%);
  z-index: 2; width: 26px; height: 44px;
  border: 2px solid rgba(255,255,255,.6); border-radius: 20px;
  display: grid; place-items: start center; padding-top: 7px;
}
.hero__scroll span { width: 4px; height: 8px; background: #fff; border-radius: 4px; animation: scrolldot 1.6s infinite; }
@keyframes scrolldot { 0%{opacity:0;transform:translateY(-4px)} 40%{opacity:1} 80%{opacity:0;transform:translateY(10px)} }

/* ---------- BANDEAU BADGES ---------- */
.badges {
  background: var(--ink);
  color: #efe6cf;
}
.badges__inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: .4rem 2rem;
  padding: 1.1rem 0;
  text-align: center;
}
.badges__item { display: inline-flex; align-items: center; gap: .5rem; font-weight: 500; font-size: .95rem; }
.badges__item b { font-family: "Viga", sans-serif; font-weight: 400; color: #f0d9ad; }
.badges__sep { color: rgba(240,230,207,.3); }

/* ---------- CATÉGORIES (Quelle aventure ?) ---------- */
.cats__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
}
.cat-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  color: #fff;
  box-shadow: var(--shadow);
  isolation: isolate;
}
.cat-card img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center; z-index: -2;
  transition: transform .6s ease;
}
/* OFF ROAD : photo portrait — cadrage équilibré (air au-dessus et en dessous du motard) */
.cat-card[href="#off-road"] img { object-position: 50% 38%; }
.cat-card::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(0deg, rgba(20,17,11,.9) 0%, rgba(20,17,11,.15) 65%, rgba(20,17,11,.35) 100%);
}
.cat-card:hover img { transform: scale(1.06); }
.cat-card__body { padding: 2rem 2.1rem 2.2rem; width: 100%; }
.cat-card__tag {
  font-family: "Viga", sans-serif; text-transform: uppercase;
  font-size: clamp(1.6rem, 3vw, 2.2rem); letter-spacing: .04em;
  margin-bottom: .5rem;
}
.cat-card__desc { color: rgba(255,255,255,.88); font-size: .98rem; max-width: 40ch; margin-bottom: 1.3rem; }

/* ---------- À PROPOS ---------- */
.about { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.about-media { position: relative; }
.about-media img {
  width: 100%; border-radius: var(--radius-lg);
  box-shadow: var(--shadow); aspect-ratio: 4/5; object-fit: cover;
}
.about-badge {
  position: absolute; right: -14px; bottom: -14px;
  background: var(--cream-solid);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: .8rem 1rem;
  box-shadow: var(--shadow);
  display: flex; align-items: center; gap: .6rem;
  max-width: 220px;
}
/* surcharge la règle .about-media img (sinon le logo hérite width:100% / cover) */
.about-media .about-badge__logo {
  flex: none;
  height: 40px;
  width: auto;
  aspect-ratio: auto;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
  display: block;
}
.about-badge span { font-size: .78rem; line-height: 1.25; font-weight: 500; }
.about-text h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); text-transform: uppercase; margin: .3rem 0 1.1rem; }
.about-text p { color: var(--ink-soft); margin: 0 0 1rem; }
.about-text .signature {
  font-family: "Just Another Hand", cursive;
  font-size: 2.2rem; color: var(--accent); line-height: 1; margin-top: .4rem;
}

/* ---------- SECTIONS EXPÉRIENCES ---------- */
.exp-section { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.exp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.exp-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  text-align: left;
  cursor: pointer;
  transition: transform .3s ease, box-shadow .3s ease;
  box-shadow: 0 10px 26px rgba(33,29,21,.10);
}
.exp-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg), 0 0 0 2px var(--accent); }
.exp-card:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }
.exp-card__media {
  position: relative; aspect-ratio: 16/10; overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.exp-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.exp-card:hover .exp-card__media img { transform: scale(1.07); }
.exp-card__price {
  position: absolute; top: .8rem; right: .8rem;
  background: var(--ink); color: #f0d9ad;
  font-family: "Viga", sans-serif; font-size: .82rem;
  padding: .3rem .7rem; border-radius: 999px;
}
.exp-card__fmt {
  position: absolute; left: .8rem; bottom: .8rem;
  display: inline-flex; align-items: center; gap: .35rem;
  background: rgba(244,238,221,.94); color: var(--ink);
  font-size: .74rem; font-weight: 600;
  padding: .28rem .6rem; border-radius: 999px;
}
.exp-card__body { padding: 1.15rem 1.3rem 1.4rem; display: flex; flex-direction: column; flex: 1; }
.exp-card__range {
  font-family: "DM Sans", sans-serif; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  font-size: .68rem; color: var(--accent); margin-bottom: .3rem;
}
.exp-card__title {
  font-family: "Viga", sans-serif; font-size: 1.24rem; line-height: 1.1;
  text-transform: uppercase; margin-bottom: .7rem;
}
.exp-card__meta {
  display: flex; flex-wrap: wrap; gap: .35rem .8rem;
  color: var(--muted); font-size: .82rem; margin-bottom: 1.1rem;
}
.exp-card__meta span { display: inline-flex; align-items: center; gap: .3rem; }
.exp-card__cta { margin-top: auto; }

/* ---------- AVIS ---------- */
.reviews {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}
.reviews::-webkit-scrollbar { display: none; }
.reviews.is-animated { overflow: hidden; }
.reviews__track {
  display: flex; align-items: stretch; gap: 1.4rem;
  width: max-content; padding: .4rem .2rem;
}
/* !important : le défilement doit tourner même si l'OS a « réduire les animations »
   activé (demande client — mouvement lent et sans clignotement). Pause au survol conservée. */
.reviews.is-animated .reviews__track {
  animation-name: reviews-scroll !important;
  animation-duration: 42s !important;
  animation-timing-function: linear !important;
  animation-iteration-count: infinite !important;
}
.reviews.is-animated:hover .reviews__track,
.reviews.is-animated:focus-within .reviews__track { animation-play-state: paused !important; }
@keyframes reviews-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.review {
  width: min(340px, 82vw); flex: none;
  background: var(--cream);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 1.5rem 1.6rem;
  box-shadow: 0 8px 22px rgba(33,29,21,.08);
  display: flex; flex-direction: column;
}
.review__stars { color: var(--accent); letter-spacing: .1em; margin-bottom: .8rem; font-size: .95rem; }
.review__text { color: var(--ink-soft); font-style: italic; margin: 0 0 1.2rem; }
.review__who { display: flex; align-items: center; gap: .8rem; margin-top: auto; }
.review__avatar {
  width: 42px; height: 42px; flex: none; border-radius: 50%;
  background: var(--ink); color: #f0d9ad;
  display: grid; place-items: center;
  font-family: "Viga", sans-serif; font-size: 1rem;
}
.review__name { font-weight: 700; font-size: .95rem; }
.review__bike { color: var(--muted); font-size: .8rem; }

/* ---------- CTA CONTACT ---------- */
.contact {
  background: var(--ink);
  color: #f4eedd;
  text-align: center;
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}
.contact h2 { font-size: clamp(2rem, 5vw, 3.2rem); text-transform: uppercase; }
.contact p { color: rgba(244,238,221,.75); max-width: 48ch; margin: 1rem auto 2rem; }
.contact__actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ---------- FOOTER ---------- */
.site-footer { background: #191510; color: #cdc4ad; padding: clamp(3rem,6vw,4rem) 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 2.4rem;
  padding-bottom: 2.6rem;
}
.footer-brand .brand__name { color: #f4eedd; }
.footer-brand .brand__tag { color: #9a9179; }
.footer-brand p { color: #9a9179; font-size: .9rem; margin: 1rem 0 1.2rem; max-width: 32ch; }
.footer-social { display: flex; gap: .7rem; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(244,238,221,.22);
  display: grid; place-items: center; transition: .25s;
}
.footer-social a:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.footer-social svg { width: 18px; height: 18px; }
.footer-col h4 {
  font-family: "Viga", sans-serif; text-transform: uppercase;
  font-size: .95rem; letter-spacing: .06em; color: #f4eedd; margin-bottom: 1rem;
}
.footer-col a, .footer-col address {
  display: block; color: #b6ac93; font-size: .9rem; font-style: normal;
  margin-bottom: .5rem; transition: color .2s;
}
.footer-col a:hover { color: var(--accent-2); }
.footer-bottom {
  border-top: 1px solid rgba(244,238,221,.12);
  padding: 1.3rem 0;
  font-size: .8rem; color: #8f886f;
}
.footer-bottom .container { display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; justify-content: space-between; }
.footer-legal { max-width: 60ch; }

/* Crédit discret "fait par phiphinfo" (easter-egg au survol) */
.credit-egg {
  flex-basis: 100%; text-align: center;
  margin-top: .9rem; padding-top: 1rem;
  border-top: 1px dashed rgba(244,238,221,.14);
  font-size: 9px; letter-spacing: .22em; text-transform: uppercase;
  color: #8f886f; opacity: .55; cursor: pointer;
  transition: opacity .5s ease, color .5s ease, text-shadow .6s ease, letter-spacing .5s ease;
}
.credit-egg::before { content: "◈"; display: inline-block; opacity: .7; margin-right: 8px; }
.credit-egg:hover { opacity: 1; color: var(--cta-hover); text-shadow: 0 0 14px var(--accent); letter-spacing: .28em; }
.credit-egg:hover::before { animation: credit-spin 1.8s linear infinite; }
@keyframes credit-spin { from { transform: rotate(0); } to { transform: rotate(360deg); } }

/* ---------- MODAL / POPUP ---------- */
.modal {
  position: fixed; inset: 0; z-index: 200;
  display: grid; place-items: center;
  padding: 1.2rem;
  visibility: hidden; opacity: 0;
  transition: opacity .28s ease, visibility .28s ease;
}
.modal.open { visibility: visible; opacity: 1; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(20,17,11,.66); backdrop-filter: blur(4px); }
.modal__dialog {
  position: relative;
  width: min(720px, 100%);
  max-height: 92svh;
  overflow-y: auto;
  background: var(--cream-solid);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transform: translateY(18px) scale(.98);
  transition: transform .3s ease;
}
.modal.open .modal__dialog { transform: none; }
.modal__media { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.modal__media img { width: 100%; height: 100%; object-fit: cover; }
.modal__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(20,17,11,.55), transparent 55%);
}
.modal__price {
  position: absolute; left: 1.4rem; bottom: 1rem; z-index: 2;
  color: #fff; font-family: "Viga", sans-serif; font-size: 1.5rem;
}
.modal__price small { font-family: "DM Sans", sans-serif; font-weight: 500; font-size: .8rem; opacity: .85; }
.modal__close {
  position: absolute; top: .9rem; right: .9rem; z-index: 3;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(20,17,11,.55); color: #fff; border: 0; cursor: pointer;
  font-size: 1.3rem; line-height: 1; display: grid; place-items: center;
  transition: background .2s;
}
.modal__close:hover { background: var(--accent); }
.modal__body { padding: 1.6rem 1.8rem 1.9rem; }
.modal__range {
  font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  font-size: .72rem; color: var(--accent);
}
.modal__title {
  font-family: "Viga", sans-serif; text-transform: uppercase;
  font-size: clamp(1.5rem, 3.4vw, 2rem); line-height: 1.05;
  margin: .35rem 0 1.2rem;
}
.modal__meta { list-style: none; margin: 0 0 1.3rem; padding: 0; display: grid; gap: .55rem; }
.modal__meta li { display: flex; align-items: center; gap: .6rem; font-size: .95rem; }
.modal__meta .ic { width: 1.4rem; text-align: center; font-size: 1rem; }
.modal__meta b { font-weight: 600; }
.bar {
  flex: 1; max-width: 180px; height: 8px; border-radius: 6px;
  background: var(--line); overflow: hidden; display: inline-flex;
}
.bar i { display: block; height: 100%; }
.bar .road { background: var(--ink); }
.bar .off  { background: var(--accent); }
.modal__desc { color: var(--ink-soft); margin: 0 0 1rem; }
.modal__note { font-size: .8rem; color: var(--muted); margin: 0 0 1.4rem; }
.modal__cta { display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; }
.modal__hint { font-size: .78rem; color: var(--muted); }

/* prestations : comprend / non compris */
.modal__incl {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 1.6rem;
  margin: 0 0 1.4rem; padding: 1.1rem 1.25rem;
  background: rgba(203,189,147,.18);
  border: 1px solid var(--line-soft); border-radius: var(--radius);
}
.incl__title {
  font-family: "Viga", sans-serif; text-transform: uppercase;
  font-size: .82rem; letter-spacing: .08em; margin: 0 0 .6rem;
}
.incl__title--yes { color: var(--green); }
.incl__title--no  { color: var(--muted); }
.incl__list { list-style: none; margin: 0; padding: 0; display: grid; gap: .42rem; }
.incl__list li {
  position: relative; padding-left: 1.5rem;
  font-size: .92rem; color: var(--ink-soft);
}
.incl__list li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--green); font-weight: 700;
}
.incl__list--no li { color: var(--muted); }
.incl__list--no li::before { content: "✕"; color: var(--red); opacity: .8; }

/* groupes / départs + offre */
.modal__group {
  display: grid; grid-template-columns: 1.55fr 1fr; gap: 1.4rem;
  align-items: start; margin: 0 0 1.3rem;
}
.modal__h4 {
  font-family: "Viga", sans-serif; text-transform: uppercase;
  font-size: .92rem; letter-spacing: .03em; margin: 0 0 .5rem;
}
.modal__group-text p { color: var(--ink-soft); font-size: .93rem; margin: 0 0 1.1rem; }
.modal__deps { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; }
.modal__deps li {
  position: relative; padding-left: 1.5rem;
  font-size: .92rem; color: var(--ink-soft);
}
.modal__deps li::before { content: "🏁"; position: absolute; left: 0; top: 0; font-size: .82rem; }
.modal__deps b { font-weight: 600; color: var(--ink); }

.offer {
  background: var(--ink); color: var(--cream-solid);
  border-radius: var(--radius); padding: 1.15rem 1.2rem;
}
.offer__badge { font-weight: 600; font-size: .82rem; letter-spacing: .03em; color: var(--cta-hover); }
.offer__deal {
  font-family: "Viga", sans-serif; font-size: 1.3rem; line-height: 1.15;
  margin: .35rem 0 1rem;
}
.offer__deal span {
  display: block; font-family: "DM Sans", sans-serif;
  font-size: .8rem; font-weight: 500; opacity: .8;
}
.offer__cond-title {
  font-size: .68rem; text-transform: uppercase; letter-spacing: .14em;
  opacity: .6; margin: 0 0 .45rem;
}
.offer__cond { list-style: none; margin: 0; padding: 0; display: grid; gap: .32rem; }
.offer__cond li { position: relative; padding-left: 1rem; font-size: .86rem; opacity: .92; }
.offer__cond li::before { content: "•"; position: absolute; left: .1rem; color: var(--cta-hover); }

.modal__more {
  text-align: center; font-size: .9rem; color: var(--muted);
  border-top: 1px solid var(--line-soft); padding-top: 1.2rem; margin: 0 0 1.3rem;
}
.modal__more a { color: var(--accent); font-weight: 600; }

/* sortie gratuite : pas d'offre groupe (remise €) */
.modal--free .offer { display: none; }
.modal--free .modal__group { grid-template-columns: 1fr; }

/* ---------- PROCHAINS DÉPARTS ---------- */
.departs__list { display: grid; gap: 1rem; }
.dep {
  display: grid; grid-template-columns: 148px 1fr auto;
  align-items: center; gap: 1.4rem;
  background: var(--cream-solid); border: 1px solid var(--line-soft);
  border-radius: var(--radius); padding: 1.15rem 1.4rem;
  box-shadow: var(--shadow);
}
.dep__date { text-align: center; border-right: 1px solid var(--line-soft); padding-right: 1.2rem; }
.dep__day { display: block; text-transform: uppercase; letter-spacing: .1em; font-size: .72rem; font-weight: 600; color: var(--accent); }
.dep__num { display: block; font-family: "Viga", sans-serif; font-size: 2.4rem; line-height: 1; margin: .12rem 0; }
.dep__month { display: block; font-size: .76rem; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; }
.dep__name { font-family: "Viga", sans-serif; text-transform: uppercase; font-size: 1.08rem; line-height: 1.15; margin: 0 0 .6rem; }
.dep__meta { list-style: none; margin: 0 0 .55rem; padding: 0; display: flex; flex-wrap: wrap; gap: .4rem .5rem; }
.dep__meta li { font-size: .8rem; background: rgba(203,189,147,.28); border-radius: 99px; padding: .22rem .7rem; color: var(--ink-soft); }
.dep__place { font-size: .88rem; color: var(--muted); margin: 0; }
.dep__place b { color: var(--ink); font-weight: 600; }
.dep__action { display: grid; justify-items: center; gap: .55rem; min-width: 156px; }
.dep__left {
  font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .05em;
  background: var(--ink); color: var(--cream-solid); border-radius: 99px; padding: .32rem .85rem;
}
.dep__price { font-family: "Viga", sans-serif; font-size: 1.3rem; color: var(--accent); }
.dep__price--free { color: var(--green); }
.dep__left--full { background: var(--red); }
.btn.btn--disabled { opacity: .5; pointer-events: none; cursor: default; }

@media (max-width: 820px) {
  .dep {
    grid-template-columns: 84px 1fr;
    grid-template-areas: "date info" "action action";
    row-gap: 1.1rem; gap: 1.1rem;
  }
  .dep__date { grid-area: date; border-right: 0; padding-right: 0; }
  .dep__num { font-size: 2rem; }
  .dep__info { grid-area: info; min-width: 0; }
  .dep__action {
    grid-area: action; display: flex; flex-wrap: wrap; align-items: center;
    justify-items: initial; gap: .7rem .8rem; min-width: 0;
    padding-top: 1rem; border-top: 1px solid var(--line-soft);
  }
  .dep__left  { order: 1; }
  .dep__price { order: 2; margin-left: auto; }
  .dep__action .btn { order: 3; flex: 1 0 100%; text-align: center; }
}

/* étoiles de niveau */
.stars-lvl { color: var(--accent); letter-spacing: .06em; }
.stars-lvl .off { color: var(--line); }

/* ---------- REVEAL ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-media { max-width: 420px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed; inset: 0 0 auto 0; top: 0; z-index: 85;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--sand); padding: 5.2rem 1.5rem 1.8rem;
    box-shadow: var(--shadow-lg);
    transform: translateY(-100%); transition: transform .35s ease;
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav > a { padding: .95rem .2rem; border-bottom: 1px solid var(--line-soft); font-size: 1.05rem; }
  .main-nav > a.btn { margin-top: 1rem; border-bottom: 0; }
  .cats__grid { grid-template-columns: 1fr; }
  .badges__inner { gap: .3rem 1.1rem; font-size: .88rem; }
  .badges__sep { display: none; }
}
@media (max-width: 560px) {
  .modal__incl { grid-template-columns: 1fr; gap: 1rem; }
  .modal__group { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .brand__logo { height: 42px; }
  .modal__body { padding: 1.3rem 1.3rem 1.6rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
