/* ==========================================================================
   Lock & Gooo — Mise en page des sections (référence Figma 1440px)
   ========================================================================== */

/* Rythme vertical global : 104px entre les sections (Figma « Frame 80 », gap 104) */
main > .section + .section { margin-top: var(--section-gap); }
main { margin-top: 144px; } /* écart entre le bas du hero (782) et la 1re section (926) */

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  padding-top: 193px;
  isolation: isolate;
}
/* Bandeau lilas 1440 × 846 arrondi en bas */
.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 846px;
  z-index: -2;
  background: var(--c-bg-hero);
  border-radius: 0 0 var(--r-hero) var(--r-hero);
}
/* Halos flous décoratifs */
.hero__blob {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
}
.hero__blob--a {
  top: 322px; left: 1138px;
  width: 416px; height: 416px;
  background: rgba(129, 140, 248, .12);
  filter: blur(64px);
}
.hero__blob--b {
  top: -9px; left: -148px;
  width: 448px; height: 448px;
  background: rgba(129, 140, 248, .15);
  filter: blur(93px);
}

/* `space-between` recalcule l'écart réel (47px à 1440px, comme dans Figma) :
   le `gap` ne sert ici que de garde-fou minimal. */
.hero__main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.hero__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 668px;
  flex: 0 0 auto;
}
.hero__head { display: flex; flex-direction: column; gap: 16px; }
.hero__titles { display: flex; flex-direction: column; gap: 8px; align-items: flex-start; }

.hero__title {
  font-size: var(--t-h1);
  line-height: var(--t-h1-lh);
  font-weight: 800;
  color: var(--c-ink);
  letter-spacing: 0;
}
.hero__title span {
  display: block;
  background: var(--grad-hero-title);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__lead {
  font-size: var(--t-lead);
  line-height: var(--t-lead-lh);
  color: var(--c-body-5);
}

.hero__booking { display: flex; flex-direction: column; gap: 14px; }
.hero__price-line {
  font-size: 18px;
  line-height: 28.8px;
  font-weight: 600;
  color: var(--c-body);
}
.hero__price-line strong {
  font-weight: 800;
  color: var(--c-primary);
}

/* Barre de recherche */
.searchbar {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 16px 24px;
  background: var(--c-white);
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: var(--r-pill);
  box-shadow: var(--sh-search);
}
.searchbar__fields {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.searchbar__field {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-body);
  font-size: 14px;
  line-height: 16.8px;
  color: var(--c-body);
}
.searchbar__field > img { flex: 0 0 auto; width: auto; height: 15px; }
.searchbar__field input,
.searchbar__field select {
  border: 0;
  background: none;
  padding: 0;
  width: 100%;
  min-width: 0;
  font-family: var(--f-body);
  font-size: 14px;
  color: var(--c-body);
}
.searchbar__field input::placeholder { color: var(--c-body); opacity: .6; }
.searchbar__field input:focus, .searchbar__field select:focus { outline: none; }
.searchbar__sep {
  flex: 0 0 auto;
  width: 1px;
  height: 12px;
  border-radius: var(--r-pill);
  background: #000;
  opacity: .15;
}

/* Carte visuelle du hero */
/* Le cadre mesure 479px dans Figma, la carte (487px) déborde volontairement. */
.hero__visual { position: relative; width: 485px; height: 479px; flex: 0 0 auto; }
.hero__card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 487px;
  padding: 26px;
  border-radius: var(--r-48);
  overflow: hidden;
  isolation: isolate;
}
/* L'image est encapsulée dans un <picture> : on sort le <picture> du flux
   (sinon il occupe un emplacement flex) et on empile en z-index positifs
   (les z-index négatifs ne sont pas peints de façon fiable ici). */
.hero__card > picture { position: absolute; inset: 0; }
.hero__card-img {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__card::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: var(--grad-hero-card);
}
.hero__card-body { position: relative; z-index: 2; }
.hero__card-logo {
  position: relative;
  z-index: 2;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 22px;
  background: rgba(255, 255, 255, .97);
  border-radius: var(--r-pill);
}
.hero__card-logo img { width: 74px; height: 34px; }
.hero__card-body { display: flex; flex-direction: column; gap: 18px; }
.hero__card-heading { display: flex; flex-direction: column; gap: 12px; }
.hero__card-dashes { width: 33px; height: 4px; }
.hero__card-eyebrow {
  font-size: 12px;
  line-height: 18px;
  font-weight: 600;
  color: var(--c-white);
}
.hero__card-title {
  font-family: var(--f-display);
  font-size: var(--t-h3);
  line-height: var(--t-h3-lh);
  font-weight: 800;
  color: var(--c-white);
}
.hero__chips { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.hero__chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  background: rgba(255, 255, 255, .2);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
  border-radius: var(--r-pill);
  font-size: 10px;
  line-height: 12.5px;
  font-weight: 500;
  color: var(--c-white);
}
.hero__chip img { width: auto; height: 10px; }

/* Pastille flottante « 2 min pour réserver » */
.hero__float {
  position: absolute;
  top: 417px;
  right: -23px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 104px;
  height: 81px;
  padding: 17px 20px;
  background: var(--c-white);
  border-radius: var(--r-24);
  box-shadow: var(--sh-float);
  text-align: center;
}
.hero__float strong {
  font-family: var(--f-display);
  font-size: 20px;
  line-height: 28px;
  font-weight: 800;
  color: var(--c-primary);
}
.hero__float span {
  font-size: 11px;
  line-height: 15px;
  font-weight: 500;
  color: var(--c-primary);
}

/* Bandeau de réassurance */
.hero__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  height: 54px;
  margin-top: 56px;
  padding: 0 10px;
  background: var(--c-white);
  border-radius: var(--r-pill);
}
.hero__trust li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  line-height: 22.4px;
  font-weight: 500;
  color: var(--c-body);
}
.hero__trust li img { width: auto; height: 20px; }
.hero__trust-sep {
  width: 1px;
  height: 20px;
  background: #2F2E41;
  opacity: .2;
  flex: 0 0 auto;
}

/* ==========================================================================
   SECTION — Comment ça marche
   ========================================================================== */
.how__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 161px;
}
.how__head .section-head { width: 792px; }
.how__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

/* ==========================================================================
   SECTION — À propos
   ========================================================================== */
.about__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
}
.about__content { width: 641px; flex: 0 0 auto; display: flex; flex-direction: column; gap: 40px; }
.about__head { display: flex; flex-direction: column; gap: 4px; align-items: flex-start; }
.about__title { font-size: var(--t-h2); line-height: var(--t-h2-lh); font-weight: 800; }
.about__body { display: flex; flex-direction: column; gap: 40px; }
.about__actions { display: flex; align-items: center; gap: 24px; }

.about__visual {
  position: relative;
  width: 503px;
  height: 621px;
  flex: 0 0 auto;
  border-radius: var(--r-48);
  overflow: hidden;
}
.about__visual > picture { position: absolute; inset: 0; }
.about__visual img.about__photo {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about__visual-side {
  position: absolute;
  top: 0; left: 112px;
  width: 266px; height: 621px;
  object-fit: cover;
}
.about__wordmark {
  position: absolute;
  top: 71px; left: 260px;
  width: 155px;
  z-index: 2;
}
.about__seal {
  position: absolute;
  top: 121px; left: 57px;
  width: 51px; height: 53px;
  z-index: 2;
}

/* ==========================================================================
   SECTION — Tarifs + Points de dépôt (bloc pleine largeur #F8F8FF)
   ========================================================================== */
.section--offers { background: var(--c-bg-ghost-2); padding: 80px 0; }
.offers__stack { display: flex; flex-direction: column; gap: 80px; }

.pricing__head { max-width: 730px; margin-inline: auto; }
.pricing__lead { max-width: 684px; margin-inline: auto; }
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.pricing__table { margin-top: 48px; }

.spots { display: flex; flex-direction: column; gap: 56px; }
.spots__head { max-width: 730px; margin-inline: auto; }
.spots__lead { max-width: 551px; margin-inline: auto; }
.spots__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* ==========================================================================
   SECTION — Réseau de partenaires (dégradé pleine largeur)
   ========================================================================== */
/* Dans Figma, ce bloc est collé au bloc « offres » (même conteneur, gap 0). */
main > .section.partners { margin-top: 0; }
.partners {
  position: relative;
  padding: 80px 16px;
  background: var(--grad-partners);
  overflow: hidden;
  isolation: isolate;
}
.partners__watermark {
  position: absolute;
  left: 19px;
  bottom: -10px;
  display: flex;
  align-items: center;
  gap: 48px;
  opacity: .07;
  z-index: -1;
  pointer-events: none;
}
.partners__watermark img { height: 170px; width: auto; }

.partners__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  max-width: var(--container);
  margin-inline: auto;
}
.partners__showcase {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  width: 572px;
  height: 430px;
  flex: 0 0 auto;
  background: var(--c-navy-950);
  border-radius: var(--r-48);
  overflow: hidden;
}
.partners__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 38px;
  background: rgba(255, 255, 255, .98);
  border-radius: var(--r-pill);
  transition: transform var(--dur) var(--ease-out);
}
.partners__logo:hover { transform: translateY(-4px) scale(1.02); }
.partners__logo img { height: auto; }
.partners__logo--airbnb img { width: 154px; }
.partners__logo--booking img { width: 284px; }
.partners__logo--conciergerie img { width: 229px; }

.partners__content { width: 572px; flex: 0 0 auto; display: flex; flex-direction: column; gap: 32px; }
.partners__content .section-title,
.partners__content .section-lead { color: var(--c-white); }

/* ==========================================================================
   SECTION — Activités
   ========================================================================== */
.activities__head { max-width: 730px; margin-inline: auto; }
.activities__lead { max-width: 719px; margin-inline: auto; }
.activities__body { display: flex; flex-direction: column; align-items: center; gap: 48px; margin-top: 48px; }
.activities__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  width: 100%;
  align-items: start;
}
/* Décalage vertical d'une carte sur deux (Figma : padding-top 32) */
.activities__grid > :nth-child(even) { margin-top: 32px; }

/* ==========================================================================
   SECTION — Avis clients (pleine largeur #FAFAFF)
   ========================================================================== */
.section--reviews { background: var(--c-bg-ghost); padding: 60px 0; }
.reviews__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.reviews__head .section-head { width: 900px; }
.reviews__head .section-lead { max-width: 696px; }
.reviews__body { display: flex; flex-direction: column; align-items: center; gap: 32px; margin-top: 48px; }
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
}

/* ==========================================================================
   SECTION — Vidéos
   ========================================================================== */
.videos__head { max-width: 730px; margin-inline: auto; }
.videos__lead { max-width: 689px; margin-inline: auto; }
.videos__body { display: flex; flex-direction: column; align-items: center; gap: 48px; margin-top: 48px; }
.videos__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  width: 100%;
}
.videos__socials { display: flex; align-items: center; justify-content: center; gap: 40px; }

/* ==========================================================================
   SECTION — Contact (pleine largeur #FBFBFB)
   ========================================================================== */
.section--contact { background: var(--c-bg-ghost-3); padding: 80px 0; }
.contact__card {
  padding: 40px;
  background: var(--c-white);
  border: .75px solid var(--c-border-5);
  border-radius: var(--r-40);
  box-shadow: var(--sh-contact);
}
.contact__inner { display: flex; align-items: center; gap: 40px; }
.contact__form-col { flex: 1 1 635px; display: flex; flex-direction: column; gap: 32px; }
.contact__form-head { display: flex; flex-direction: column; gap: 16px; }
.contact__fields { display: flex; flex-direction: column; gap: 24px; }
.contact__submit { margin-top: 40px; }
.contact__row { display: flex; gap: 16px; }
.contact__row > * { flex: 1 1 0; }
.contact__divider { width: 1px; align-self: stretch; background: var(--c-border-5); flex: 0 0 auto; }

.contact__aside {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 60px;
  width: 405px;
  min-height: 538px;
  flex: 0 0 auto;
  padding: 20px;
  background: var(--c-indigo-550);
  border-radius: var(--r-32);
  overflow: hidden;
  isolation: isolate;
}
.contact__aside-deco {
  position: absolute;
  top: -175px; right: -100px;
  width: 513px;
  z-index: -1;
  pointer-events: none;
}
.contact__passport {
  width: 200px;
  filter: drop-shadow(0 3px 32px rgba(0, 0, 0, .11));
}
.contact__infos { display: flex; flex-direction: column; gap: 16px; width: 100%; }
.contact__info {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  background: rgba(255, 255, 255, .08);
  border-radius: var(--r-pill);
  font-family: var(--f-body);
  font-size: 12px;
  line-height: 18px;
  font-weight: 500;
  color: var(--c-white);
}
.contact__info img { flex: 0 0 auto; width: auto; height: 16px; }

/* ==========================================================================
   SECTION — FAQ
   ========================================================================== */
.faq__head { max-width: 838px; margin-inline: auto; }
.faq__inner { display: flex; align-items: center; gap: 32px; margin-top: 48px; }
.faq__list { flex: 1 1 792px; display: flex; flex-direction: column; gap: 24px; }
.faq__visual {
  width: 376px;
  height: 573px;
  flex: 0 0 auto;
  border-radius: var(--r-32);
  overflow: hidden;
}
.faq__visual picture { display: block; height: 100%; }
.faq__visual img { width: 100%; height: 100%; object-fit: cover; }

/* ==========================================================================
   PIED DE PAGE
   ========================================================================== */
.site-footer {
  position: relative;
  margin-top: var(--section-gap);
  padding: 80px 0;
  background: var(--c-navy);
  color: var(--c-white);
  overflow: hidden;
  isolation: isolate;
}
.site-footer__lines {
  position: absolute;
  top: 357px; left: 858px;
  width: 676px;
  z-index: -1;
  opacity: .5;
  pointer-events: none;
}
.site-footer__glow {
  position: absolute;
  top: 198px; left: 1075px;
  width: 468px;
  z-index: -1;
  pointer-events: none;
}
.site-footer__inner { display: flex; flex-direction: column; gap: 65px; position: relative; }

.footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 106px;
  height: 414px; /* hauteur fixe dans Figma */
}
.footer__brand {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  width: 468px;
  flex: 0 0 auto;
}
.footer__brand > div { display: flex; flex-direction: column; gap: 37px; }
.footer__slogan {
  font-size: var(--t-footer-h);
  line-height: var(--t-footer-h-lh);
  font-weight: 800;
  letter-spacing: .2px;
  color: var(--c-white);
}
.footer__dashes { width: 228px; height: auto; }
.footer__contact { display: flex; flex-direction: column; gap: 16px; }
.footer__heading {
  font-family: var(--f-display);
  font-size: 18px;
  line-height: 22.5px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--c-indigo-200);
}
.footer__contact-list { display: flex; flex-direction: column; gap: 20px; }
.footer__contact-list a {
  font-family: var(--f-body);
  font-size: 32px;
  line-height: 22px; /* Figma : 42px entre les deux lignes (22 + gap 20) */
  font-weight: 500;
  color: var(--c-white);
  transition: color var(--dur-fast) var(--ease);
}
.footer__contact-list a:hover { color: var(--c-indigo-200); }

.footer__nav { display: flex; flex-direction: column; gap: 56px; width: 255px; flex: 0 0 auto; }
.footer__nav-group { display: flex; flex-direction: column; gap: 16px; }
.footer__chips { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer__chip {
  display: inline-flex;
  align-items: center;
  height: 40px;
  padding: 0 18px;
  border: .75px solid rgba(255, 255, 255, .25);
  border-radius: var(--r-pill);
  font-family: var(--f-body);
  font-size: 20px;
  line-height: 32px;
  font-weight: 600;
  color: var(--c-white);
  white-space: nowrap;
  transition: background-color var(--dur) var(--ease), border-color var(--dur) var(--ease), transform var(--dur) var(--ease-out);
}
.footer__chip:hover {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .6);
  transform: translateX(4px);
}

.footer__social { display: flex; align-items: center; gap: 24px; flex: 0 0 auto; }
.footer__social .footer__heading { white-space: nowrap; }
.footer__social-links { display: flex; align-items: center; gap: 4px; }
.footer__social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 39px; height: 39px;
  background: var(--c-navy-900);
  border-radius: 126px;
  transition: transform var(--dur) var(--ease-out), background-color var(--dur) var(--ease);
}
.footer__social-links a:hover { transform: translateY(-3px); background: var(--c-primary); }
.footer__social-links img { width: auto; height: 20px; }

.footer__bottom { position: relative; }
.footer__logo { width: 469px; height: auto; }
.footer__card {
  position: absolute;
  right: 0; bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 21px;
  width: 281px;
  padding: 24px;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(13px);
  -webkit-backdrop-filter: blur(13px);
  border-radius: var(--r-34);
  box-shadow: var(--sh-footer-card);
}
.footer__card dl { display: flex; flex-direction: column; gap: 5px; margin: 0; }
.footer__card dt,
.footer__card dd {
  margin: 0;
  font-family: var(--f-body);
  font-size: 14px;
  line-height: 22.4px;
  color: var(--c-body-3);
}
.footer__card dt { font-weight: 600; }
.footer__card hr { width: 100%; height: 1px; border: 0; background: rgba(48, 56, 69, .16); margin: 0; }

.footer__legal {
  margin-top: 48px;
  padding-top: 24px;
  border-top: .75px solid rgba(255, 255, 255, .16);
  font-family: var(--f-body);
  font-size: 14px;
  line-height: 22.4px;
  color: rgba(255, 255, 255, .7);
  text-align: center;
}
