/* ============================================================
   YES CONCIERGERIE — POC siège (direction "Hospitalité chaleureuse")
   Palette : terracotta + crème + sable + ink
   Typo : Newsreader (display) + DM Sans (sans)
   ============================================================ */

:root {
  /* Couleurs — direction "Hospitalité chaleureuse" (version initiale) */
  --terracotta:        #C8654A;
  --terracotta-dark:   #A04F38;
  --terracotta-soft:   #E8A693;
  --cream:             #F7F1E8;
  --cream-warm:        #EDE3D2;
  --sand:              #D4B996;
  --ink:               #2A2419;
  --ink-soft:          #5A5048;
  --ink-mute:          #8C8378;
  --white:             #FDFCFA;
  --line:              rgba(42, 36, 25, 0.12);
  --line-light:        rgba(247, 241, 232, 0.18);

  /* Typo — Montserrat (titres) + Didact Gothic (texte) */
  --font-display: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-sans:    "Didact Gothic", "Montserrat", -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --container: 1280px;
  --gutter: clamp(20px, 4vw, 56px);

  /* Radius */
  --r-sm: 6px;
  --r-md: 14px;
  --r-lg: 24px;

  /* Shadows */
  --shadow-soft: 0 12px 32px -16px rgba(42, 36, 25, 0.18);
  --shadow-hover: 0 24px 48px -20px rgba(42, 36, 25, 0.28);
}

/* ============ RESET ============ */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
html, body { max-width: 100vw; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5 { margin: 0; font-weight: 500; }
p { margin: 0 0 1em; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ============ ATOMS ============ */

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 16px;
}
.eyebrow--light { color: var(--terracotta-soft); }

.display {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(32px, 4.6vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin-bottom: 24px;
}
.display em { font-style: italic; font-weight: 400; color: var(--terracotta); }
.display--light { color: var(--cream); }
.display--light em { color: var(--terracotta-soft); }

.lead {
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 56ch;
}
.lead--light { color: rgba(247, 241, 232, 0.85); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: all 220ms cubic-bezier(.2,.7,.2,1);
  white-space: nowrap;
}
.btn--primary {
  background: var(--terracotta);
  color: var(--cream);
}
.btn--primary:hover {
  background: var(--terracotta-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--cream); }
.btn--ghost-light {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid var(--cream);
}
.btn--ghost-light:hover { background: var(--cream); color: var(--ink); }
.btn--cream {
  background: var(--cream);
  color: var(--ink);
}
.btn--cream:hover { background: var(--white); transform: translateY(-1px); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  font-size: 15px;
  color: var(--terracotta);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: all 180ms ease;
}
.link-arrow:hover { border-bottom-color: var(--terracotta); }
.link-arrow--light { color: var(--cream); }
.link-arrow--light:hover { border-bottom-color: var(--cream); }

.link-quiet {
  font-size: 14px;
  color: var(--ink-soft);
  transition: color 180ms ease;
}
.link-quiet:hover { color: var(--ink); }

.chip {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  background: rgba(247, 241, 232, 0.15);
  color: var(--cream);
  border: 1px solid rgba(247, 241, 232, 0.3);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 400;
}

.section-head {
  max-width: 760px;
  margin-bottom: 56px;
}
.section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head--row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  max-width: none;
  margin-bottom: 40px;
}
.section-head--row > div { max-width: 640px; }

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

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 252, 250, 0.92);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--line);
}
.header__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px var(--gutter);
  display: grid;
  grid-template-columns: 94px 1fr auto;
  align-items: center;
  gap: 24px;
}
.logo {
  display: inline-flex;
  align-items: center;
  min-width: 94px;
  flex-shrink: 0;
}
.logo img {
  height: 64px;
  width: 94px;
  min-width: 94px;
  max-width: 94px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.nav ul {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: nowrap;
}
.nav a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14.5px;
  letter-spacing: -0.005em;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
}
.nav a:hover { color: var(--terracotta); }
.nav .has-sub { position: relative; }
.nav .submenu {
  position: absolute;
  top: 100%;
  left: -16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 12px;
  min-width: 280px;
  box-shadow: var(--shadow-soft);
  display: none;
  flex-direction: column;
  gap: 2px;
}
.nav .submenu a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  padding: 10px 12px;
  border-radius: var(--r-sm);
  white-space: nowrap;
}
.nav .submenu a:hover { background: var(--cream); }
.nav .has-sub:hover .submenu { display: flex; }

.header__cta {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header__cta .btn {
  height: 42px;
  padding: 0 18px;
  font-size: 14px;
}

/* Sélecteur de langue */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 4px;
  background: var(--cream);
  border-radius: 999px;
}
.lang {
  padding: 5px 10px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  border-radius: 999px;
  transition: all 180ms;
}
.lang:hover { color: var(--ink); }
.lang--active {
  background: var(--ink);
  color: var(--cream);
}

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

.hero {
  position: relative;
  padding-top: 30px;
  padding-bottom: 64px;
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.78) saturate(1.05);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(42, 36, 25, 0.5) 0%,
    rgba(42, 36, 25, 0.35) 40%,
    rgba(42, 36, 25, 0.65) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 24px var(--gutter) 60px;
}
.hero__eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #FFB897;
  margin-bottom: 22px;
  padding: 7px 14px;
  background: rgba(200, 101, 74, 0.22);
  border: 1px solid rgba(232, 166, 147, 0.35);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(38px, 5.5vw, 76px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin-bottom: 26px;
  max-width: 18ch;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}
.hero__title em {
  font-style: normal;
  font-weight: 500;
  color: #FFB897;
  text-shadow: 0 2px 28px rgba(200, 101, 74, 0.45);
}
.hero__lead {
  font-size: 19px;
  line-height: 1.6;
  color: rgba(247, 241, 232, 0.92);
  max-width: 56ch;
  margin: 0;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.4);
}

/* 3 PROFILS */
.paths {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 32px auto 0;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.path {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px 26px 40px;
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: 0 24px 60px -28px rgba(42, 36, 25, 0.5);
  border: 1px solid var(--line);
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms;
  min-height: 200px;
}
.path:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 72px -24px rgba(42, 36, 25, 0.55);
}
.path__tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
}
.path__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.1;
  color: var(--ink);
  margin: 2px 0;
}
.path__desc {
  font-size: 15px;
  color: var(--ink-soft);
  flex: 1;
  margin: 4px 0 12px;
}
.path__kpi {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  padding: 10px 14px;
  background: var(--cream);
  border-radius: var(--r-sm);
  align-self: flex-start;
}
.path__arrow {
  position: absolute;
  bottom: 18px;
  right: 26px;
  font-size: 20px;
  color: var(--terracotta);
  transition: transform 280ms cubic-bezier(.2,.7,.2,1);
}
.path:hover .path__arrow { transform: translateX(6px); }

.path--traveler .path__tag,
.path--traveler .path__arrow { color: var(--terracotta-dark); }
.path--franchise .path__tag,
.path--franchise .path__arrow { color: #8E5237; }

/* ===== Carte « Devenir franchisé » mise en avant (carte primaire) ===== */
.path--franchise {
  background: linear-gradient(150deg, #C8654A 0%, #A8432B 100%);
  border: none;
  box-shadow: 0 30px 70px -26px rgba(200, 80, 50, 0.72);
  overflow: hidden;
}
.path--franchise .path__tag { color: #FFD9C9; }
.path--franchise .path__title { color: #fff; font-weight: 500; }
.path--franchise .path__desc { color: rgba(255, 255, 255, 0.9); }
.path--franchise .path__arrow {
  color: #fff;
  width: 40px;
  height: 40px;
  bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  font-size: 18px;
}
.path--franchise:hover { box-shadow: 0 38px 84px -22px rgba(200, 80, 50, 0.8); }
/* reflet lumineux qui balaie lentement la carte */
.path--franchise::after {
  content: "";
  position: absolute;
  top: -60%;
  left: -40%;
  width: 50%;
  height: 220%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform: rotate(8deg);
  pointer-events: none;
  animation: franchiseSheen 6.5s ease-in-out infinite;
}
@keyframes franchiseSheen {
  0% { left: -40%; }
  15%, 100% { left: 130%; }
}
@media (prefers-reduced-motion: reduce) {
  .path--franchise::after { display: none; animation: none; }
}

/* ============ RIBBON KPIs ============ */

.ribbon {
  background: var(--cream);
  padding: 80px 0 28px;
  margin-top: 0;
}
.ribbon__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.ribbon__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
  align-items: center;
}
.ribbon__num {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 600;
  color: var(--terracotta);
  line-height: 1;
  letter-spacing: -0.01em;
}
.ribbon__lbl {
  font-size: 13px;
  color: var(--ink-soft);
  letter-spacing: 0.01em;
}
.ribbon__sep {
  width: 1px;
  height: 48px;
  background: var(--line);
}

/* ============ PROMISE ============ */

.promise {
  padding: 72px 0;
  background: var(--white);
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.two-col--reverse .two-col__left { order: 2; }
.two-col--center { align-items: center; }
.figure--ratio { margin: 0; }
.figure--ratio img { aspect-ratio: 4/5; object-fit: cover; max-height: 520px; }
.two-col__right p:first-child { margin-top: 0; }
.promise__cta {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

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

.services {
  padding: 72px 0;
  background: var(--cream);
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 56px;
}
.service-grid--2x2 { grid-template-columns: repeat(2, 1fr); max-width: 920px; margin-left: auto; margin-right: auto; }
.svc {
  background: var(--white);
  padding: 36px 30px;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  transition: all 260ms cubic-bezier(.2,.7,.2,1);
  position: relative;
  overflow: hidden;
}
.svc:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
  border-color: var(--terracotta-soft);
}
.svc__num {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: 36px;
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: 18px;
}
.svc h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--ink);
}
.svc p {
  font-size: 15px;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.55;
}
.services__foot {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

/* ============ TRAVELER ============ */

.traveler {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 720px;
  background: var(--ink);
  color: var(--cream);
}
.traveler__media {
  position: relative;
  overflow: hidden;
}
.traveler__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85) saturate(1.1);
}
.traveler__content {
  padding: 100px clamp(28px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.traveler__services {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 36px;
}
.traveler__cta {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

/* ============ DESTINATIONS ============ */

.destinations {
  padding: 72px 0;
  background: var(--white);
  overflow: hidden;
}
.destinations .container { margin-bottom: 48px; }

/* Auto-scroll marquee */
.dest-marquee {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
}
.dest-rail {
  display: flex;
  gap: 20px;
  padding: 8px 0 8px;
  width: max-content;
}

.dest {
  flex: 0 0 320px;
  height: 420px;
  border-radius: var(--r-lg);
  background-image: linear-gradient(180deg, rgba(42, 36, 25, 0) 30%, rgba(42, 36, 25, 0.78) 100%), var(--bg);
  background-size: cover;
  background-position: center;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--cream);
  position: relative;
  overflow: hidden;
  transition: transform 320ms cubic-bezier(.2,.7,.2,1), box-shadow 320ms;
  text-decoration: none;
}
.dest:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -16px rgba(42, 36, 25, 0.45);
}
.dest__region {
  position: absolute;
  top: 22px;
  left: 22px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 10px;
  background: rgba(247, 241, 232, 0.18);
  backdrop-filter: blur(8px);
  border-radius: 4px;
}
.dest h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 34px;
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.dest__cta {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  opacity: 0.85;
}

/* ============ FRANCHISE ============ */

.franchise {
  padding: 72px 0;
  background: var(--cream);
}
.franchise__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 36px;
  margin: 40px 0;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.franchise__stats > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.franchise__num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 500;
  color: var(--terracotta);
  line-height: 1;
  letter-spacing: -0.01em;
}
.franchise__lbl {
  font-size: 14px;
  color: var(--ink-soft);
}
.franchise__cta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.figure {
  margin: 0;
}
.figure img {
  width: 100%;
  border-radius: var(--r-lg);
  aspect-ratio: 4/5;
  object-fit: cover;
}
.figure figcaption {
  margin-top: 14px;
  font-size: 13px;
  color: var(--ink-soft);
  font-style: italic;
  text-align: center;
}

/* ============ TESTIMONIALS ============ */

.testimonials {
  padding: 72px 0;
  background: var(--white);
}
.testi-marquee {
  width: calc(100% + var(--gutter) * 2);
  margin: 0 calc(-1 * var(--gutter));
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
  padding: 8px 0;
}
.testi-rail {
  display: flex;
  gap: 22px;
  padding: 0 var(--gutter);
  width: max-content;
}
.testi {
  flex: 0 0 420px;
  background: var(--cream);
  padding: 36px 32px;
  border-radius: var(--r-lg);
  margin: 0;
  position: relative;
}
.testi::before {
  content: "“";
  position: absolute;
  top: 6px;
  left: 22px;
  font-family: var(--font-display);
  font-size: 80px;
  color: var(--terracotta);
  line-height: 1;
  opacity: 0.4;
}
.testi blockquote {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.45;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: 24px 0 28px;
  position: relative;
  z-index: 1;
}
.testi figcaption {
  font-size: 14px;
  color: var(--ink-soft);
}
.testi figcaption strong {
  color: var(--ink);
  font-weight: 600;
  margin-right: 6px;
}

/* ============ PRESS ============ */

.press {
  padding: 72px 0;
  background: var(--cream);
}
.press-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px 48px;
  padding: 32px 0 56px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 56px;
}
.press-logo {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 19px;
  color: var(--ink-mute);
  letter-spacing: 0.01em;
  white-space: nowrap;
  opacity: 0.65;
  transition: opacity 220ms ease;
}
.press-logo:hover { opacity: 1; color: var(--ink); }
.press-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.press-card {
  background: var(--white);
  padding: 32px 30px;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all 240ms cubic-bezier(.2,.7,.2,1);
}
.press-card:hover {
  transform: translateY(-3px);
  border-color: var(--terracotta-soft);
  box-shadow: var(--shadow-soft);
}
.press-card__media {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
}
.press-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--ink);
}
.press-card p {
  font-size: 15px;
  color: var(--ink-soft);
  margin: 0;
  flex: 1;
}
.press__cta { text-align: center; }

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

.final {
  background: var(--ink);
  color: var(--cream);
  padding: 88px 0;
  text-align: center;
  background-image:
    radial-gradient(ellipse at 50% 0%, rgba(200, 101, 74, 0.18), transparent 60%),
    linear-gradient(180deg, var(--ink), #1F1A12);
}
.final__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.final .eyebrow { display: inline-block; }
.final .lead {
  margin: 0 auto 36px;
}
.final__cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

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

.footer {
  background: var(--ink);
  color: rgba(247, 241, 232, 0.78);
  padding: 56px 0 28px;
  font-size: 14.5px;
  border-top: 1px solid rgba(247, 241, 232, 0.08);
}
.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line-light);
  margin-bottom: 48px;
}
.footer__brand p {
  margin: 16px 0 24px;
  color: rgba(247, 241, 232, 0.6);
  font-size: 14px;
  line-height: 1.6;
}
.logo--footer img {
  height: 40px;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
.footer__socials {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}
.footer__socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(247, 241, 232, 0.08);
  color: rgba(247, 241, 232, 0.75);
  transition: all 200ms ease;
}
.footer__socials a:hover {
  background: var(--terracotta);
  color: var(--cream);
  transform: translateY(-2px);
}
.footer__socials svg { display: block; }

.footer__col h4 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 17px;
  color: var(--cream);
  margin-bottom: 18px;
}
.footer__col a {
  display: block;
  padding: 5px 0;
  font-size: 14px;
  color: rgba(247, 241, 232, 0.7);
  transition: color 180ms ease;
}
.footer__col a:hover { color: var(--cream); }
.footer__addr {
  font-size: 13.5px;
  color: rgba(247, 241, 232, 0.7);
  line-height: 1.55;
  margin: 0 0 16px;
}
.footer__addr strong {
  color: var(--cream);
  font-weight: 500;
  display: block;
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(247, 241, 232, 0.55);
  flex-wrap: wrap;
  gap: 16px;
}
.footer__legal { display: flex; gap: 22px; flex-wrap: wrap; }
.footer__legal a {
  color: rgba(247, 241, 232, 0.55);
  transition: color 180ms;
}
.footer__legal a:hover { color: var(--cream); }

/* ============ TOPBAR YES EXCURSIONS ============ */

.topbar {
  background: var(--terracotta);
  color: var(--white);
  text-align: center;
  padding: 10px 16px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: var(--font-sans);
  position: relative;
  z-index: 60;
}
.topbar a {
  color: var(--white);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: opacity 200ms;
}
.topbar a:hover { opacity: 0.85; }
.topbar a span { transition: transform 200ms; display: inline-block; }
.topbar a:hover span { transform: translateX(4px); }
@media (max-width: 520px) {
  .topbar { padding: 8px 12px; font-size: 11px; letter-spacing: 0.08em; }
}

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

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: transparent;
  border: 1.5px solid var(--ink);
  color: var(--ink);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 200ms;
}
.menu-toggle:hover { background: var(--ink); color: var(--cream); }
.menu-toggle svg { display: block; }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--white);
  color: var(--ink);
  display: flex;
  flex-direction: column;
  padding: 20px 18px 28px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 280ms ease, transform 280ms cubic-bezier(.2,.7,.2,1), visibility 280ms;
}
.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mobile-menu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  margin-bottom: 8px;
}
.mobile-menu__top img { height: 46px; filter: none; }
.mobile-menu__close {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: transparent;
  border: 1.5px solid var(--ink);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 200ms;
}
.mobile-menu__close:hover { background: var(--ink); color: var(--white); }
.mobile-menu nav { display: flex; flex-direction: column; gap: 0; }
.mobile-menu nav a {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 18px;
  padding: 20px 18px;
  color: var(--ink);
  border-bottom: 1px solid rgba(42, 36, 25, 0.08);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 180ms;
}
.mobile-menu nav a:hover { background: rgba(247, 241, 232, 0.5); }
.mobile-menu nav a.is-active {
  background: var(--cream);
  color: var(--ink);
}
.mobile-menu nav a.is-sub {
  font-size: 14px;
  padding: 16px 18px 16px 36px;
  background: rgba(247, 241, 232, 0.45);
  color: var(--ink-soft);
  font-weight: 600;
  letter-spacing: 0.03em;
}
.mobile-menu nav a.is-sub.is-active {
  background: var(--cream);
  color: var(--ink);
}
.mobile-menu__cta {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 6px;
}
.mobile-menu__cta .btn { width: 100%; justify-content: center; }
.mobile-menu__lang {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(42, 36, 25, 0.08);
}
.mobile-menu__lang button {
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  border-radius: 999px;
  background: transparent;
  border: none;
  cursor: pointer;
}
.mobile-menu__lang button.is-active {
  background: var(--ink);
  color: var(--cream);
}

body.menu-open { overflow: hidden; }

/* ============ RESPONSIVE ============ */

@media (max-width: 1080px) {
  .nav ul { gap: 22px; }
  .nav a { font-size: 14px; }
  .paths { grid-template-columns: 1fr; gap: 16px; max-width: 540px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .press-grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__cities-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 820px) {
  /* Header allégé : logo gauche, CTA + burger droite */
  .header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px var(--gutter);
  }
  .nav { display: none; }
  .lang-switch { display: none; }
  .logo img { height: 48px; width: 70px; }
  .header__cta { gap: 10px; margin-left: auto; }
  .header__cta .btn { height: 38px; padding: 0 14px; font-size: 13px; }
  .menu-toggle { display: inline-flex; }

  /* HERO : titre plus compact + lead plus court, paths rapprochés */
  .hero { padding-top: 12px; padding-bottom: 32px; }
  .hero__content { padding: 8px var(--gutter) 24px; }
  .hero__eyebrow { font-size: 11px; letter-spacing: 0.22em; padding: 6px 12px; margin-bottom: 16px; }
  .hero__title {
    font-size: clamp(34px, 8.5vw, 48px);
    line-height: 1.06;
    max-width: 100%;
    margin-bottom: 18px;
  }
  .hero__lead { font-size: 16px; line-height: 1.55; }

  /* PATHS : 1 col, sans débordement, rapprochée du hero text */
  .paths {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 14px;
    max-width: 100% !important;
    width: auto !important;
    margin: 0 !important;
    padding: 0 var(--gutter) !important;
    box-sizing: border-box;
  }
  .path {
    min-height: 0;
    padding: 22px 22px 50px;
    box-shadow: 0 14px 36px -20px rgba(42, 36, 25, 0.45);
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
    min-width: 0;
  }
  .path__title { font-size: 22px; }
  .path__desc { font-size: 14.5px; }
  .path__arrow { bottom: 18px; right: 22px; font-size: 20px; }

  /* RIBBON : 5 col sur une seule ligne, alignés haut */
  .ribbon { padding: 36px 0 24px; }
  .ribbon__inner {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    padding: 0 12px;
    align-items: start;
  }
  .ribbon__sep { display: none; }
  .ribbon__item {
    min-width: 0;
    padding: 0 2px;
    height: 100%;
    justify-content: flex-start;
  }
  .ribbon__num {
    font-size: clamp(16px, 4vw, 24px);
    min-height: 1.2em;
    display: flex;
    align-items: center;
  }
  .ribbon__lbl {
    font-size: clamp(9px, 2.2vw, 11px);
    line-height: 1.3;
    min-height: 2.6em;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
  }

  /* SECTIONS : padding vertical réduit */
  .promise, .services, .destinations, .franchise, .testimonials { padding: 56px 0; }
  .final { padding: 60px 0; }
  .section-head { margin-bottom: 36px; }
  .section-head--row { flex-direction: column; align-items: flex-start; gap: 16px; }

  /* DISPLAY title plus petit */
  .display { font-size: clamp(28px, 6.8vw, 38px); line-height: 1.12; }

  /* TWO-COL en 1 col */
  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .two-col--reverse .two-col__left { order: 0; }

  /* TRAVELER split en colonne — tout centré */
  .traveler { grid-template-columns: 1fr; }
  .traveler__media { min-height: 280px; }
  .traveler__media img { height: 280px; }
  .traveler__content { padding: 44px 24px; text-align: center; }
  .traveler__content .lead { margin: 0 auto 28px; }
  .traveler__services { justify-content: center; }
  .traveler__cta { justify-content: center; }

  /* SERVICES en 1 col */
  .service-grid { grid-template-columns: 1fr; gap: 16px; }
  .svc { padding: 26px 22px; }
  .svc--illus .svc__head { margin-bottom: 14px; }
  .svc__icon { width: 44px; height: 44px; }
  .svc__icon svg { width: 22px; height: 22px; }
  .svc__num { font-size: 30px; }
  .svc h3 { font-size: 19px; margin-bottom: 8px; }
  .svc p { font-size: 14.5px; }

  /* DESTINATIONS rail : cards adaptées */
  .dest { flex: 0 0 52vw; max-width: 240px; height: 300px; padding: 18px; }
  .dest h3 { font-size: 22px; margin-bottom: 8px; }
  .dest__region { top: 16px; left: 16px; font-size: 10px; padding: 5px 8px; letter-spacing: 0.14em; }
  .dest__cta { font-size: 12px; }
  .dest-rail { gap: 14px; }

  /* FRANCHISE — stats centrés sur mobile */
  .franchise__stats {
    grid-template-columns: 1fr 1fr;
    gap: 28px 18px;
    text-align: center;
    padding-top: 24px;
    margin: 28px 0;
  }
  .franchise__stats > div { align-items: center; }
  .franchise__num { font-size: 30px; }
  .franchise__cta { justify-content: center; }
  .franchise .two-col__left { text-align: center; }
  .franchise .two-col__left .lead,
  .franchise .two-col__left .display { margin-left: auto; margin-right: auto; }

  /* TESTIMONIALS */
  .testi-rail { gap: 14px; }
  .testi { flex: 0 0 68vw; max-width: 280px; padding: 22px 20px; }
  .testi blockquote { font-size: 15px; line-height: 1.4; margin: 14px 0 16px; }
  .testi figcaption { font-size: 13px; }
  .testi::before { font-size: 48px; top: 4px; left: 16px; }

  /* FINAL CTA centré */
  .final__inner { padding: 0 var(--gutter); }
  .final__cta { flex-direction: column; gap: 12px; }
  .final__cta .btn { width: 100%; justify-content: center; }

  /* FOOTER */
  .footer { padding: 48px 0 24px; }
  .footer__top { grid-template-columns: 1fr; gap: 32px; padding-bottom: 36px; margin-bottom: 28px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer__legal { flex-wrap: wrap; gap: 14px 18px; }

  /* SUBMENU dropdown invisible (geré par mobile menu plus tard) */
  .nav .submenu { display: none !important; }
}

@media (max-width: 480px) {
  .hero__eyebrow { font-size: 10.5px; }
  .hero__title { font-size: clamp(30px, 9vw, 40px); }
  .hero__lead { font-size: 15px; }

  .paths { margin: 24px auto 0; }
  .path { padding: 22px 20px 48px; }

  .ribbon { padding: 32px 0 20px; }
  .ribbon__inner { gap: 6px; padding: 0 8px; }
  .ribbon__num { font-size: clamp(14px, 4.2vw, 20px); }
  .ribbon__lbl { font-size: clamp(8px, 2.4vw, 10px); }

  .display { font-size: clamp(24px, 7.5vw, 32px); }
  .lead { font-size: 15.5px; }

  .promise, .services, .destinations, .franchise, .testimonials { padding: 44px 0; }
  .final { padding: 48px 0; }

  .dest { flex: 0 0 60vw; max-width: 220px; height: 280px; padding: 16px; }
  .dest h3 { font-size: 20px; }

  .testi { flex: 0 0 64vw; max-width: 240px; padding: 18px 16px; }
  .testi blockquote { font-size: 14px; line-height: 1.4; margin: 10px 0 12px; }
  .testi figcaption { font-size: 12px; }
  .testi::before { font-size: 40px; }

  .btn { height: 44px; padding: 0 18px; font-size: 14px; }
  .header__cta .btn { font-size: 12.5px; padding: 0 12px; }
  .logo img { height: 42px; width: 61px; }
}

/* ===== Cards cliquables vers le blog ===== */
a.card-link {
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease;
  border-radius: inherit;
}
a.card-link:hover { transform: translateY(-3px); }
a.card-link:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 4px;
  border-radius: 14px;
}
a.card-link .svc,
a.card-link .pillar,
a.card-link .parcours-card,
a.card-link .svc-round { height: 100%; }
