/* =========================================================================
   Le iOiO — feuille de style du site public
   Reprise stricte du design de référence (Site iOiO.dc.html) :
   mêmes couleurs, mêmes graisses, mêmes rayons, mêmes courbes d'animation.
   Flat design : aucune ombre portée sauf barre CTA, panneau du bot et pop-up.
   ========================================================================= */

:root {
  --ink: #0E0E0E;
  --cream: #FFF8EA;
  --yellow: #FFD100;
  --white: #FFFFFF;
  --teal: #12B39A;
  --sand: #EDE5D5;
  --map: #EDE6D8;

  --ease-soft: cubic-bezier(.22, .9, .2, 1);
  --ease-pop: cubic-bezier(.16, 1.12, .3, 1);
  --ease-enter: cubic-bezier(.16, 1.06, .3, 1);

  --shell: 1240px;
  --sticky-space: 132px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: 'Manrope', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  padding-bottom: var(--sticky-space);
  overflow-x: clip;
  min-height: 100vh;
}
body.no-sticky { padding-bottom: 0; }
body.is-locked { overflow: hidden; }

a { color: var(--ink); text-decoration: none; }
a:hover {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--yellow);
  text-decoration-thickness: 3px;
  text-underline-offset: 3px;
}
img { max-width: 100%; }
button, input, textarea, select { font-family: inherit; }
::selection { background: var(--yellow); }

h1, h2, h3, h4 { font-family: 'Bricolage Grotesque', 'Manrope', sans-serif; font-weight: 800; letter-spacing: -.03em; }

.shell { max-width: var(--shell); margin: 0 auto; padding-left: 24px; padding-right: 24px; }
.shell--narrow { max-width: 900px; }
.shell--legal { max-width: 860px; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  padding: 14px 20px; background: var(--yellow); border: 2px solid var(--ink);
  border-radius: 0 0 14px 0; font: 800 14px/1 'Manrope', sans-serif;
}
.skip:focus { left: 0; text-decoration: none; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ------------------------------------------------------------ animations */

@keyframes ioioHalo { 0% { transform: scale(.92); opacity: .85 } 70% { transform: scale(1.95); opacity: 0 } 100% { transform: scale(1.95); opacity: 0 } }
@keyframes ioioMarquee { from { transform: translateX(0) } to { transform: translateX(-50%) } }
@keyframes ioioFloat { 0%, 100% { transform: translateY(0) rotate(-1.5deg) } 50% { transform: translateY(-26px) rotate(2deg) } }
@keyframes ioioPop { 0% { opacity: 0; transform: translateY(46px) scale(.9) } 60% { opacity: 1; transform: translateY(-6px) scale(1.015) } 100% { opacity: 1; transform: none } }
@keyframes ioioFade { from { opacity: 0 } to { opacity: 1 } }
@keyframes ioioEnter { 0% { opacity: 0; transform: translateY(54px) scale(.985) } 100% { opacity: 1; transform: none } }
@keyframes ioioSwing { 0%, 100% { transform: rotate(-11deg) } 50% { transform: rotate(11deg) } }
@keyframes ioioDot { 0%, 80%, 100% { opacity: .2 } 40% { opacity: 1 } }

/* Apparition au scroll : posée en JS, l'état final reste lisible sans JS. */
[data-reveal] { opacity: 1; }
.js [data-reveal] {
  opacity: 0;
  transform: translateY(58px) scale(.965);
  transition: opacity .7s ease, transform .95s var(--ease-pop);
}
.js [data-reveal][data-shown] { opacity: 1; transform: none; }

.page-enter { animation: ioioEnter .7s var(--ease-enter); }

/* ---------------------------------------------------------------- boutons */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  border: 0; cursor: pointer; text-align: center;
  border-radius: 999px;
  font: 800 16px/1 'Manrope', sans-serif;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 0% 100%;
  transition: background-size .5s var(--ease-soft), color .3s ease, transform .5s var(--ease-pop);
  padding: 19px 30px;
}
.btn:hover, .btn:focus-visible { background-size: 100% 100%; text-decoration: none; }
.btn--lift:hover, .btn--lift:focus-visible { transform: translateY(-7px) scale(1.035); }

.btn--ink { background-color: var(--ink); background-image: linear-gradient(var(--yellow), var(--yellow)); color: var(--cream); }
.btn--ink:hover, .btn--ink:focus-visible { color: var(--ink); }

.btn--yellow { background-color: var(--yellow); background-image: linear-gradient(var(--ink), var(--ink)); color: var(--ink); }
.btn--yellow:hover, .btn--yellow:focus-visible { color: var(--cream); }

.btn--yellow-cream { background-color: var(--yellow); background-image: linear-gradient(var(--cream), var(--cream)); color: var(--ink); }

.btn--outline {
  border: 2px solid var(--ink); padding: 17px 28px;
  background-color: transparent; background-image: linear-gradient(var(--ink), var(--ink)); color: var(--ink);
}
.btn--outline:hover, .btn--outline:focus-visible { color: var(--cream); }

.btn--outline-cream {
  border: 2px solid var(--cream); padding: 17px 28px;
  background-color: transparent; background-image: linear-gradient(var(--cream), var(--cream)); color: var(--cream);
}
.btn--outline-cream:hover, .btn--outline-cream:focus-visible { color: var(--ink); }

.btn--outline-yellow {
  border: 2px solid var(--ink); padding: 12px 16px;
  background-color: transparent; background-image: linear-gradient(var(--yellow), var(--yellow)); color: var(--ink);
}

.btn--md { padding: 15px 24px; font-size: 14px; }
.btn--md.btn--outline { padding: 13px 22px; }
.btn--sm { padding: 13px 20px; font-size: 13.5px; }
.btn--sm.btn--outline { padding: 11px 18px; }
.btn--block { width: 100%; }
.btn--square { border-radius: 14px; }
.btn--arrow { font-size: 18px; font-weight: 800; }

/* Lien souligné qui se remplit de gauche à droite. */
.link-underline {
  display: inline-block; border: 0; padding: 0 0 6px; cursor: pointer;
  background-color: transparent;
  background-image: linear-gradient(var(--ink), var(--ink));
  background-repeat: no-repeat; background-position: 0 100%; background-size: 0% 2px;
  color: var(--ink); font: 800 15px/1 'Manrope', sans-serif;
  transition: background-size .4s var(--ease-soft);
}
.link-underline:hover, .link-underline:focus-visible { background-size: 100% 2px; text-decoration: none; }
.link-underline--yellow { background-image: linear-gradient(var(--yellow), var(--yellow)); }
.link-underline--sm { font-size: 14px; padding-bottom: 5px; }

/* ------------------------------------------------------------- bandeau haut */

.topbar { background: var(--ink); color: var(--cream); }
.topbar__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  padding-top: 10px; padding-bottom: 10px;
  font-size: 13px; font-weight: 600;
}
.topbar__facts { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.topbar__sep { opacity: .3; }
.topbar__langs { display: flex; align-items: center; gap: 6px; }
.topbar__langLabel { opacity: .55; letter-spacing: .12em; font-size: 11px; }
.lang {
  border: 0; cursor: pointer; padding: 5px 11px; border-radius: 999px;
  font: 700 12px/1 'Manrope', sans-serif; letter-spacing: .06em;
  background-color: rgba(255, 248, 234, .12); color: var(--cream);
  transition: background-color .3s ease, color .3s ease, transform .5s var(--ease-pop);
}
.lang:hover, .lang:focus-visible { transform: translateY(-4px) scale(1.06); text-decoration: none; }
.lang.is-active { background-color: var(--yellow); color: var(--ink); }

.translate-banner { background: var(--yellow); border-bottom: 2px solid var(--ink); }
.translate-banner__inner {
  padding-top: 9px; padding-bottom: 9px;
  font: 600 13px/1.4 'Manrope', sans-serif;
  display: flex; gap: 10px; align-items: center;
}
.translate-banner__dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--ink); flex: none; }

/* ------------------------------------------------------------------ header */

.header {
  position: sticky; top: 0; z-index: 50;
  background-color: var(--cream);
  border-bottom: 2px solid var(--ink);
  transition: background-color .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.header__inner {
  display: flex; align-items: center; gap: 28px;
  padding-top: 14px; padding-bottom: 14px;
  transition: padding .35s var(--ease-soft);
}
.header.is-scrolled {
  background-color: rgba(14, 14, 14, .78);
  box-shadow: 0 14px 34px rgba(14, 14, 14, .26);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: rgba(255, 248, 234, .18);
}
.header.is-scrolled .header__inner { padding-top: 7px; padding-bottom: 7px; }
.header.is-scrolled .brand { color: var(--white); }
.header.is-scrolled .brand__mark { width: 38px; height: 38px; }

.brand {
  display: flex; align-items: center; gap: 12px;
  background: none; border: 0; padding: 0; cursor: pointer; text-align: left;
  color: var(--ink); transition: color .35s ease;
}
.brand:hover { text-decoration: none; }
.brand__mark {
  display: grid; place-items: center; width: 46px; height: 46px; flex: none;
  border-radius: 15px;
  background: var(--ink) center/cover url('../img/ioio-mark.png');
  box-shadow: 0 0 0 1.5px rgba(255, 248, 234, .22);
  transition: transform .5s var(--ease-pop), width .35s ease, height .35s ease;
}
.brand:hover .brand__mark { transform: rotate(-10deg) scale(1.06); }
.brand__name { display: block; font: 800 22px/1 'Bricolage Grotesque', sans-serif; letter-spacing: -.03em; }
.brand__tagline { display: block; margin-top: 4px; font: 700 9.5px/1 'Manrope', sans-serif; letter-spacing: .11em; opacity: .55; white-space: nowrap; }

.nav { display: flex; align-items: center; gap: 20px; margin-left: auto; flex-wrap: wrap; justify-content: flex-end; }
.nav__link {
  border: 0; background-color: transparent; cursor: pointer; padding: 6px 0;
  font: 700 12.5px/1 'Manrope', sans-serif; letter-spacing: .08em; white-space: nowrap;
  color: rgba(14, 14, 14, .62);
  background-image: linear-gradient(var(--yellow), var(--yellow));
  background-repeat: no-repeat; background-position: 0 100%; background-size: 0% 2px;
  transition: background-size .4s var(--ease-soft), color .3s ease;
}
.nav__link:hover, .nav__link:focus-visible { background-size: 100% 2px; color: var(--ink); text-decoration: none; }
.nav__link.is-active { color: var(--ink); background-size: 100% 2px; }
.header.is-scrolled .nav__link { color: rgba(255, 255, 255, .82); }
.header.is-scrolled .nav__link:hover, .header.is-scrolled .nav__link.is-active { color: var(--white); }

.nav__cta {
  border: 0; cursor: pointer; padding: 13px 21px; border-radius: 999px;
  background-color: var(--ink);
  background-image: linear-gradient(var(--yellow), var(--yellow));
  background-repeat: no-repeat; background-position: 0 0; background-size: 0% 100%;
  color: var(--cream); font: 800 12.5px/1 'Manrope', sans-serif; letter-spacing: .08em; white-space: nowrap;
  transition: background-size .46s var(--ease-soft), color .3s ease, transform .5s var(--ease-pop), background-color .35s ease;
}
.nav__cta:hover, .nav__cta:focus-visible { background-size: 100% 100%; color: var(--ink); transform: translateY(-5px) scale(1.04); text-decoration: none; }
.header.is-scrolled .nav__cta { background-color: var(--yellow); background-image: linear-gradient(var(--cream), var(--cream)); color: var(--ink); }

.header__progress { position: absolute; left: 0; bottom: -2px; height: 4px; width: 0; background: var(--yellow); transition: width .12s linear; }

.nav__toggle { display: none; }

/* -------------------------------------------------------------------- hero */

.hero { position: relative; border-bottom: 2px solid var(--ink); overflow: hidden; }
.hero__blob { position: absolute; border-radius: 50%; pointer-events: none; }
.hero__blob--yellow { top: -90px; right: -70px; width: 420px; height: 420px; background: var(--yellow); opacity: .5; }
.hero__blob--teal { bottom: -120px; left: -90px; width: 300px; height: 300px; background: var(--teal); opacity: .28; }

/* Le « O » du logo au bout de son fil. */
.hero__thread {
  position: absolute; top: 0; width: 3px; transform-origin: top center;
  animation: ioioSwing 6.5s ease-in-out infinite; pointer-events: none; z-index: 3;
}
.hero__thread span { position: absolute; border-radius: 50%; box-sizing: content-box; }
.hero__thread--1 { left: 63%; height: 46px; background: rgba(14, 14, 14, .32); }
.hero__thread--1 span { left: -87px; bottom: -176px; width: 116px; height: 116px; border: 30px solid var(--yellow); }
.hero__thread--2 { left: 84%; height: 40px; background: rgba(14, 14, 14, .3); animation-duration: 8.5s; }
.hero__thread--2 span { left: -61px; bottom: -124px; width: 82px; height: 82px; border: 21px solid var(--ink); }

.hero__inner {
  position: relative;
  padding-top: 74px; padding-bottom: 84px;
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: 56px; align-items: center;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 9px 16px; border: 2px solid var(--ink); border-radius: 999px; background: var(--cream);
  font: 700 12px/1 'Manrope', sans-serif; letter-spacing: .1em;
}
.hero__badgeDot { display: inline-block; width: 9px; height: 9px; border-radius: 50%; background: var(--teal); flex: none; }

/* Compteur de disponibilités : il doit accrocher l'œil sans clignoter.
   Pastille qui bat, halo qui se propage, léger reflet qui balaie la pilule. */
.hero__badge--live { position: relative; overflow: hidden; }
.hero__badge--live .hero__badgeDot { position: relative; animation: dotBeat 2.4s ease-in-out infinite; }
.hero__badge--live .hero__badgeDot::after {
  content: ''; position: absolute; inset: -3px; border-radius: 50%;
  border: 2px solid var(--teal); animation: dotHalo 2.4s ease-out infinite;
}
.hero__badgeText { position: relative; z-index: 1; }
.hero__badgeCount {
  display: inline-block; font: 800 13px/1 'Bricolage Grotesque', sans-serif;
  padding: 3px 7px; margin-right: 2px; border-radius: 6px;
  background: var(--yellow); animation: countPop 4.8s ease-in-out infinite;
}
.hero__badge--live::after {
  content: ''; position: absolute; top: 0; bottom: 0; left: -60%; width: 45%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .75), transparent);
  animation: badgeSheen 4.8s ease-in-out infinite;
}

@keyframes dotBeat {
  0%, 55%, 100% { transform: scale(1); }
  28% { transform: scale(1.35); }
}
@keyframes dotHalo {
  0% { opacity: .7; transform: scale(1); }
  70%, 100% { opacity: 0; transform: scale(2.4); }
}
@keyframes countPop {
  0%, 80%, 100% { transform: scale(1) rotate(0deg); }
  86% { transform: scale(1.14) rotate(-2.5deg); }
  93% { transform: scale(1.06) rotate(1.5deg); }
}
@keyframes badgeSheen {
  0%, 62% { left: -60%; }
  92%, 100% { left: 115%; }
}
@media (prefers-reduced-motion: reduce) {
  .hero__badge--live .hero__badgeDot,
  .hero__badge--live .hero__badgeDot::after,
  .hero__badgeCount,
  .hero__badge--live::after { animation: none; }
  .hero__badge--live::after { display: none; }
}
.hero__title {
  margin: 22px 0 0;
  font: 800 clamp(44px, 5.4vw, 76px)/0.94 'Bricolage Grotesque', sans-serif;
  letter-spacing: -.035em; text-wrap: balance;
}
.hero__highlight { display: inline-block; padding: 0 10px; background: var(--yellow); border-radius: 10px; transform: rotate(-1.5deg); }
.hero__text { margin: 26px 0 0; max-width: 520px; font: 500 19px/1.55 'Manrope', sans-serif; opacity: .78; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.hero__stats { display: flex; gap: 28px; flex-wrap: wrap; margin-top: 44px; padding-top: 26px; border-top: 2px dashed rgba(14, 14, 14, .25); }
.hero__statValue { font: 800 30px/1 'Bricolage Grotesque', sans-serif; }
.hero__statLabel { font: 600 13px/1.4 'Manrope', sans-serif; opacity: .6; margin-top: 5px; }

.hero__media { position: relative; }
.slideshow {
  position: relative; border: 2px solid var(--ink); border-radius: 26px;
  overflow: hidden; background: var(--ink); aspect-ratio: 4/5;
}
.slideshow__slide {
  position: absolute; inset: 0; background: var(--ink) center/cover no-repeat;
  opacity: 0; transform: scale(1); transition: opacity 1s ease, transform 6s linear;
}
.slideshow__slide.is-active { opacity: 1; transform: scale(1.06); }
.slideshow__dots { position: absolute; left: 0; right: 0; bottom: 16px; z-index: 4; display: flex; justify-content: center; gap: 7px; }
.slideshow__dot {
  border: 2px solid var(--ink); cursor: pointer; padding: 0;
  width: 12px; height: 12px; border-radius: 99px; background-color: var(--cream);
  transition: width .45s var(--ease-pop), background-color .35s ease;
}
.slideshow__dot.is-active { width: 34px; background-color: var(--yellow); }

.float-card {
  position: absolute; background: var(--cream); border: 2px solid var(--ink);
  border-radius: 18px; padding: 16px 18px; animation: ioioFloat 6s ease-in-out infinite;
}
.float-card--price { left: -26px; bottom: 52px; }
.float-card--claim { right: -20px; top: 50%; margin-top: -132px; z-index: 4; background: var(--teal); animation-duration: 7.5s; }
.float-card__label { font: 800 13px/1 'Manrope', sans-serif; letter-spacing: .08em; }
.float-card__price { font: 800 32px/1 'Bricolage Grotesque', sans-serif; margin-top: 6px; }
.float-card__price small { font-size: 14px; font-weight: 700; opacity: .6; }
.float-card__kicker { display: block; font: 800 11px/1 'Manrope', sans-serif; letter-spacing: .14em; }
.float-card__claim { display: block; margin-top: 7px; font: 800 17px/1.2 'Bricolage Grotesque', sans-serif; }

/* ---------------------------------------------------------------- marquee */

.marquee { background: var(--ink); color: var(--cream); border-bottom: 2px solid var(--ink); overflow: hidden; padding: 20px 0; }
.marquee__track { display: flex; width: max-content; animation: ioioMarquee 19s linear infinite; }
.marquee__item {
  display: inline-flex; align-items: center; gap: 22px; padding: 0 22px;
  font: 800 22px/1 'Bricolage Grotesque', sans-serif; letter-spacing: -.01em; white-space: nowrap;
}
.marquee__bullet { width: 8px; height: 8px; border-radius: 50%; background: var(--cream); opacity: .4; flex: none; }

/* -------------------------------------------------------------- sections */

.section { padding-top: 88px; }
.section--tight { padding-top: 78px; }
.section--first { padding-top: 60px; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.kicker { font: 800 12px/1 'Manrope', sans-serif; letter-spacing: .16em; color: var(--ink); }
.section-title { margin: 16px 0 0; font: 800 clamp(34px, 3.6vw, 50px)/1 'Bricolage Grotesque', sans-serif; letter-spacing: -.03em; }
.section-title--center { text-align: center; }
.section-lead { margin: 18px 0 0; max-width: 620px; font: 500 17.5px/1.55 'Manrope', sans-serif; opacity: .78; }

.grid { display: grid; gap: 26px; }
.grid--places { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); margin-top: 38px; }
/* Mosaïque du catalogue : toujours 4 colonnes sur grand écran, quel que soit
   le nombre de résultats. Un nombre de colonnes fixe (et non « auto-fit »)
   évite que les cartes s'étirent quand un filtre ne renvoie qu'un bureau. */
.grid--offices,
.grid--offices-lg { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; }
.grid--offices { margin-top: 34px; }
.grid--offices-lg { margin: 34px 0 20px; }
/* Une ou deux disponibilités sur l'accueil : deux pavés côte à côte, et
   dans chaque pavé la photo à gauche, le texte à droite, moitié-moitié. */
.grid--offices-spot { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }

@media (max-width: 1180px) {
  .grid--offices:not(.grid--offices-spot),
  .grid--offices-lg { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 880px) {
  .grid--offices:not(.grid--offices-spot),
  .grid--offices-lg { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .grid--offices:not(.grid--offices-spot),
  .grid--offices-lg { grid-template-columns: minmax(0, 1fr); }
}
.grid--steps { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; margin-top: 40px; }
.grid--reviews { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-top: 32px; }
.grid--news { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 22px; margin-top: 36px; }
.grid--amenities { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 16px; margin-top: 44px; }
.grid--included { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 12px; margin-top: 20px; }

/* -------------------------------------------------------- carte « espace » */

.place-card {
  border: 2px solid var(--ink); border-radius: 26px; background: var(--white);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .55s var(--ease-pop);
}
.place-card:hover { transform: translateY(-13px) scale(1.015); }
.place-card__media { position: relative; height: 250px; border-bottom: 2px solid var(--ink); }
.place-card__logo {
  position: absolute; top: 14px; right: 14px; width: 62px; height: 62px;
  border-radius: 12px; border: 2px solid var(--ink); z-index: 2; pointer-events: none;
  background: var(--ink) center/contain no-repeat;
}
.place-card__body { padding: 26px 26px 28px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.place-card__meta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.place-card__title { margin: 0; font: 800 30px/1.05 'Bricolage Grotesque', sans-serif; letter-spacing: -.02em; }
.place-card__text { margin: 0; font: 500 16px/1.55 'Manrope', sans-serif; opacity: .75; }
.place-card__cta { margin-top: auto; align-self: flex-start; }

.tag {
  padding: 6px 12px; border-radius: 999px; border: 2px solid var(--ink);
  font: 800 11px/1 'Manrope', sans-serif; letter-spacing: .1em; white-space: nowrap;
}
.tag--lg { display: inline-block; padding: 7px 14px; letter-spacing: .12em; }
.meta-note { font: 700 13px/1 'Manrope', sans-serif; opacity: .6; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  padding: 7px 12px; border-radius: 999px; background: var(--cream);
  border: 1.5px solid rgba(14, 14, 14, .2); font: 600 12.5px/1 'Manrope', sans-serif;
}
.chip--lg { padding: 8px 13px; font-size: 13px; border-color: rgba(14, 14, 14, .22); }

/* -------------------------------------------------------- carte « bureau » */

.office-card {
  border: 2px solid var(--ink); border-radius: 22px; background: var(--cream);
  overflow: hidden; transition: transform .55s var(--ease-pop);
  display: flex; flex-direction: column;
}
.office-card--white { background: var(--white); }
.office-card:hover { transform: translateY(-13px) scale(1.015); }
/* Format portrait : une photo de bureau se lit mal dans un bandeau écrasé. */
.office-card__media { position: relative; aspect-ratio: 4 / 3; border-bottom: 2px solid var(--ink); overflow: hidden; }
.office-card__count {
  position: absolute; right: 10px; bottom: 10px; z-index: 2;
  padding: 6px 10px; border-radius: 999px; background: var(--cream); border: 2px solid var(--ink);
  font: 800 11px/1 'Manrope', sans-serif;
}
.office-card__body { padding: 20px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.office-card__body--lg { padding-bottom: 24px; }
.office-card__row { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.office-card__title { margin: 14px 0 0; font: 800 22px/1.1 'Bricolage Grotesque', sans-serif; letter-spacing: -.02em; }
.office-card__title--lg { font-size: 23px; }
.office-card__sub { font: 700 13px/1 'Manrope', sans-serif; opacity: .6; margin-top: 8px; }
.office-card__price { display: flex; align-items: baseline; gap: 7px; margin-top: 12px; flex-wrap: wrap; }
.office-card__priceValue { font: 800 30px/1 'Bricolage Grotesque', sans-serif; }
.office-card__priceNote { font: 700 12.5px/1 'Manrope', sans-serif; opacity: .6; }
/* Le bouton respire : il ne colle plus au tarif ni au bord de la carte. */
.office-card__cta { width: 100%; margin-top: 22px; }
.office-card__cta.btn { margin-top: auto; }
.office-card__body > .office-card__cta.btn { margin-top: 22px; }
.office-card__ctaWrap { margin-top: 18px; }

/* ---------------------------------------------- carte « disponibilité » mise en avant */
.office-card--spot { flex-direction: row; align-items: stretch; }
.office-card--spot .office-card__media {
  flex: 0 0 50%; aspect-ratio: auto; min-height: 300px;
  border-bottom: 0; border-right: 2px solid var(--ink);
}
.office-card--spot .office-card__body { flex: 1; justify-content: center; padding: 26px 28px 28px; }
.office-card--spot .office-card__title { margin-top: 14px; font-size: 25px; }
.office-card--spot .office-card__price { margin-top: 14px; }
.office-card--spot .office-card__priceValue { font-size: 33px; }
.office-card--spot .office-card__cta,
.office-card--spot .office-card__body > .office-card__cta.btn { width: auto; align-self: flex-start; margin-top: 24px; }
.office-card--spot .office-card__count { right: 12px; bottom: 12px; }

/* Sous 1080 px la moitié devient trop étroite : un pavé par ligne, la photo
   reste à gauche. Sous 700 px, on empile photo puis texte. */
@media (max-width: 1080px) {
  .grid--offices-spot { grid-template-columns: minmax(0, 1fr); }
  .office-card--spot .office-card__title { font-size: 28px; }
  .office-card--spot .office-card__priceValue { font-size: 36px; }
  .office-card--spot .office-card__body { padding: 30px 34px 32px; }
}
@media (max-width: 700px) {
  .office-card--spot { flex-direction: column; }
  .office-card--spot .office-card__media {
    flex: none; aspect-ratio: 4 / 3; min-height: 0;
    border-right: 0; border-bottom: 2px solid var(--ink);
  }
  .office-card--spot .office-card__body { padding: 22px 24px 26px; }
  .office-card--spot .office-card__title { font-size: 24px; }
  .office-card--spot .office-card__priceValue { font-size: 32px; }
  .office-card--spot .office-card__cta,
  .office-card--spot .office-card__body > .office-card__cta.btn { width: 100%; }
}

.status-pill {
  padding: 6px 11px; border-radius: 999px; color: var(--ink);
  font: 800 11px/1 'Manrope', sans-serif; letter-spacing: .08em; white-space: nowrap;
}
.status-pill--lg { padding: 6px 12px; }

.cover { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.cover-placeholder {
  position: absolute; inset: 0; display: grid; place-items: center; padding: 16px;
  text-align: center; font: 800 13px/1.35 'Manrope', sans-serif; letter-spacing: .06em;
  color: rgba(14, 14, 14, .45);
}

/* ------------------------------------------------------- étapes / preuves */

.step { border: 2px solid var(--ink); border-radius: 22px; padding: 28px; }
.step__n { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 16px; background: var(--ink); color: var(--cream); font: 800 22px/1 'Bricolage Grotesque', sans-serif; }
.step__title { margin: 20px 0 0; font: 800 24px/1.1 'Bricolage Grotesque', sans-serif; letter-spacing: -.02em; }
.step__text { margin: 12px 0 0; font: 500 15.5px/1.55 'Manrope', sans-serif; opacity: .78; }

.reviews-head { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.reviews-badge { display: flex; align-items: center; gap: 8px; padding: 10px 16px; border: 2px solid var(--ink); border-radius: 999px; background: var(--white); }
.reviews-badge__stars { font: 800 15px/1 'Manrope', sans-serif; }
.reviews-badge__text { font: 700 13px/1 'Manrope', sans-serif; opacity: .7; }
.reviews-title { margin: 0; font: 800 clamp(32px, 3.4vw, 46px)/1 'Bricolage Grotesque', sans-serif; letter-spacing: -.03em; }
.review {
  margin: 0; border: 2px solid var(--ink); border-radius: 22px; background: var(--white);
  padding: 24px; display: flex; flex-direction: column; gap: 14px;
}
.review__stars { font: 800 14px/1 'Manrope', sans-serif; color: var(--yellow); -webkit-text-stroke: .6px var(--ink); }
.review__text { margin: 0; font: 500 16px/1.55 'Manrope', sans-serif; }
.review__footer { margin-top: auto; display: flex; align-items: center; gap: 11px; }
.review__avatar { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; border: 2px solid var(--ink); font: 800 14px/1 'Manrope', sans-serif; flex: none; }
.review__name { display: block; font: 700 14px/1 'Manrope', sans-serif; }
.review__source { display: block; margin-top: 4px; font: 600 11.5px/1 'Manrope', sans-serif; opacity: .55; }

/* ------------------------------------------------ carrousel des témoignages */
/* Défilement natif avec accroche : le glissement tactile et le clavier
   fonctionnent sans une ligne de JavaScript ; le script n'ajoute que
   l'avance automatique, les flèches et les pastilles. */
.reviews-carousel { position: relative; margin-top: 32px; }
.reviews-track {
  display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; padding: 4px 4px 14px; margin: -4px -4px 0;
  scrollbar-width: none;
}
.reviews-track::-webkit-scrollbar { display: none; }
.reviews-track:focus-visible { outline: 3px solid var(--ink); outline-offset: 4px; border-radius: 24px; }
/* Trois témoignages à la fois, jamais davantage : au-delà, on ne lit plus. */
.reviews-track .review {
  flex: 0 0 calc((100% - 40px) / 3); scroll-snap-align: start;
  min-height: 268px; transition: transform .4s var(--ease-pop);
}
.reviews-track .review:hover { transform: translateY(-6px); }

/* Un avis bavard ne doit pas étirer toute la rangée : il défile dans son pavé. */
.reviews-track .review__text {
  max-height: 8.2em; overflow-y: auto; padding-right: 8px;
  scrollbar-width: thin; scrollbar-color: rgba(14, 14, 14, .35) transparent;
  overscroll-behavior: contain;
}
.reviews-track .review__text::-webkit-scrollbar { width: 5px; }
.reviews-track .review__text::-webkit-scrollbar-thumb { background: rgba(14, 14, 14, .3); border-radius: 999px; }
.reviews-track .review__text::-webkit-scrollbar-track { background: transparent; }
/* Un dégradé en bas dit qu'il reste du texte ; il s'efface une fois lu. */
.reviews-track .review__text.is-scrollable {
  -webkit-mask-image: linear-gradient(to bottom, #000 calc(100% - 26px), transparent);
          mask-image: linear-gradient(to bottom, #000 calc(100% - 26px), transparent);
}
.reviews-track .review__text.is-scrollable.is-end {
  -webkit-mask-image: none; mask-image: none;
}

.reviews-arrow {
  position: absolute; top: calc(50% - 22px); z-index: 3;
  width: 46px; height: 46px; border-radius: 50%; cursor: pointer;
  border: 2px solid var(--ink); background: var(--cream); color: var(--ink);
  font: 700 24px/1 'Manrope', sans-serif; display: grid; place-items: center;
  transition: transform .3s var(--ease-pop), background-color .3s ease, opacity .3s ease;
}
.reviews-arrow--prev { left: -22px; }
.reviews-arrow--next { right: -22px; }
.reviews-arrow:hover { background: var(--yellow); transform: scale(1.08); }
.reviews-arrow[disabled] { opacity: .3; cursor: default; transform: none; }

.reviews-dots { display: flex; justify-content: center; gap: 9px; margin-top: 16px; flex-wrap: wrap; }
.reviews-dot {
  width: 9px; height: 9px; border-radius: 50%; padding: 0; cursor: pointer;
  border: 2px solid var(--ink); background: transparent;
  transition: background-color .3s ease, transform .3s var(--ease-pop);
}
.reviews-dot.is-active { background: var(--ink); transform: scale(1.35); }

@media (max-width: 1040px) {
  .reviews-track .review { flex-basis: calc((100% - 20px) / 2); }
  .reviews-arrow--prev { left: -8px; }
  .reviews-arrow--next { right: -8px; }
}
@media (max-width: 700px) {
  .reviews-track .review { flex-basis: 86%; min-height: 0; }
  .reviews-track .review__text { max-height: 11em; }
  .reviews-arrow { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .reviews-track { scroll-behavior: auto; }
  .reviews-track .review:hover { transform: none; }
}

/* ----------------------------------------------------------- bande finale */

.band {
  border: 2px solid var(--ink); border-radius: 30px; background: var(--ink); color: var(--cream);
  padding: 56px 44px; text-align: center; position: relative; overflow: hidden;
}
.band__blob { position: absolute; border-radius: 50%; background: var(--yellow); }
.band__blob--1 { top: -70px; left: -40px; width: 240px; height: 240px; opacity: .35; }
.band__blob--2 { bottom: -90px; right: -50px; width: 260px; height: 260px; opacity: .3; }
.band__inner { position: relative; }
.band__title { margin: 0; font: 800 clamp(34px, 4vw, 58px)/1 'Bricolage Grotesque', sans-serif; letter-spacing: -.03em; text-wrap: balance; }
.band__text { margin: 18px auto 0; max-width: 560px; font: 500 18px/1.55 'Manrope', sans-serif; opacity: .8; }
.band__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 32px; }

/* ------------------------------------------------------------------- FAQ */

.faq { border: 2px solid var(--ink); border-radius: 18px; background: var(--white); margin-bottom: 12px; overflow: hidden; }
.faq__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px;
  text-align: left; border: 0; cursor: pointer; padding: 22px 24px;
  background-color: transparent; background-image: linear-gradient(var(--cream), var(--cream));
  background-repeat: no-repeat; background-position: 0 0; background-size: 0% 100%;
  font: 800 18px/1.3 'Bricolage Grotesque', sans-serif;
  transition: background-size .45s var(--ease-soft);
}
.faq__q:hover, .faq__q:focus-visible { background-size: 100% 100%; }
.faq__sign {
  flex: none; display: grid; place-items: center; width: 32px; height: 32px; border-radius: 50%;
  background: var(--ink); color: var(--cream); font: 700 18px/1 'Manrope', sans-serif;
  transition: transform .5s var(--ease-pop);
}
.faq[open] .faq__sign, .faq.is-open .faq__sign { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease-soft); }
.faq.is-open .faq__a { max-height: 420px; }
.faq__a p { margin: 0; padding: 0 24px 24px; font: 500 16px/1.6 'Manrope', sans-serif; opacity: .78; }

/* ------------------------------------------------------------- nos espaces */

.space-hero { border-bottom: 2px solid var(--ink); background: var(--yellow); }
.space-hero__inner { padding-top: 64px; padding-bottom: 64px; }
.space-hero__title { margin: 18px 0 0; font: 800 clamp(40px, 5vw, 68px)/0.98 'Bricolage Grotesque', sans-serif; letter-spacing: -.035em; max-width: 820px; text-wrap: balance; }
.space-hero__text { margin: 22px 0 0; max-width: 620px; font: 500 18px/1.55 'Manrope', sans-serif; }

.space { border-bottom: 2px solid var(--ink); }
.space__inner { padding-top: 76px; padding-bottom: 76px; }
.space__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 44px; align-items: start; }
.space__title { margin: 20px 0 0; font: 800 clamp(36px, 4vw, 56px)/1 'Bricolage Grotesque', sans-serif; letter-spacing: -.03em; }
.space__where { font: 800 20px/1 'Bricolage Grotesque', sans-serif; opacity: .55; margin-top: 10px; }
.space__text { margin: 22px 0 0; font: 500 17px/1.6 'Manrope', sans-serif; opacity: .8; }
.space__access { margin-top: 26px; padding: 20px 22px; border: 2px dashed rgba(14, 14, 14, .3); border-radius: 18px; }
.space__accessLabel { font: 800 12px/1 'Manrope', sans-serif; letter-spacing: .12em; margin-bottom: 12px; }
.space__cta { margin-top: 26px; }
.space__gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.space__shot { position: relative; overflow: hidden; border: 2px solid var(--ink); background: var(--ink); }
.space__shot--main { grid-column: span 2; height: 270px; border-radius: 22px; }
.space__shot--small { height: 150px; border-radius: 18px; }

.amenity { background: var(--cream); border: 2px solid var(--ink); border-radius: 18px; padding: 22px; transition: transform .5s var(--ease-pop); }
.amenity:hover { transform: translateY(-11px) scale(1.02); }
.amenity__bar { height: 6px; width: 42px; border-radius: 99px; }
.amenity__title { margin: 16px 0 0; font: 800 19px/1.15 'Bricolage Grotesque', sans-serif; }
.amenity__text { margin: 9px 0 0; font: 500 14.5px/1.5 'Manrope', sans-serif; opacity: .75; }

/* ------------------------------------------------------------ nos bureaux */

.offices-title { margin: 16px 0 0; font: 800 clamp(38px, 4.6vw, 62px)/1 'Bricolage Grotesque', sans-serif; letter-spacing: -.035em; }
.filters { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 30px; }
.filter {
  border: 2px solid var(--ink); cursor: pointer; padding: 12px 20px; border-radius: 999px;
  background-color: transparent; color: var(--ink);
  font: 800 13.5px/1 'Manrope', sans-serif;
  transition: background-color .35s ease, color .35s ease, transform .3s ease;
}
.filter:hover, .filter:focus-visible { transform: translateY(-5px) scale(1.04); text-decoration: none; }
.filter.is-active { background-color: var(--ink); color: var(--cream); }
.filter span { opacity: .5; }
/* Catégorie vide : la pastille reste lisible mais n'emmène nulle part. */
.filter--empty { opacity: .38; cursor: default; pointer-events: none; }
.filters__state { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin: 18px 0 0; font: 700 13.5px/1.4 'Manrope', sans-serif; opacity: .75; }
.filters__group { display: flex; gap: 10px; flex-wrap: wrap; }
.filters__sep { width: 1px; align-self: stretch; background: rgba(14, 14, 14, .18); margin: 0 4px; }
.empty-note {
  margin: 34px 0 0; padding: 26px; border: 2px dashed rgba(14, 14, 14, .3); border-radius: 20px;
  font: 500 16px/1.6 'Manrope', sans-serif; opacity: .8;
}

/* ------------------------------------------------------------ fiche bureau */

.crumb { display: flex; align-items: center; gap: 10px; font: 700 13px/1 'Manrope', sans-serif; opacity: .6; flex-wrap: wrap; }
.crumb a { color: inherit; }
.fiche { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: 40px; margin-top: 26px; align-items: start; }
.fiche__main { position: relative; height: 400px; border: 2px solid var(--ink); border-radius: 26px; overflow: hidden; background: var(--ink); }
.fiche__thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 14px; }
.fiche__thumb { position: relative; height: 120px; border: 2px solid var(--ink); border-radius: 16px; overflow: hidden; background: var(--ink); padding: 0; cursor: pointer; }
.fiche__thumb.is-active { box-shadow: 0 0 0 4px var(--yellow); }
.fiche__thumb { transition: transform .3s var(--ease-pop); }
.fiche__thumb:hover, .fiche__thumb:focus-visible { transform: translateY(-4px); box-shadow: 0 0 0 4px var(--yellow); }
/* Léger fondu quand la vignette prend la place du grand format. */
.fiche__main.is-swapping img { animation: ficheSwap .4s ease; }
@keyframes ficheSwap { from { opacity: .35; transform: scale(1.02); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .fiche__main.is-swapping img { animation: none; } }
.fiche__h2 { margin: 40px 0 0; font: 800 30px/1.05 'Bricolage Grotesque', sans-serif; letter-spacing: -.025em; }
.fiche__h2--map { margin-top: 44px; }
.fiche__desc { margin: 18px 0 0; font: 500 16.5px/1.65 'Manrope', sans-serif; opacity: .8; }
.included {
  display: flex; align-items: center; gap: 11px; padding: 14px 16px;
  border: 2px solid var(--ink); border-radius: 14px; background: var(--white);
  font: 600 14.5px/1.3 'Manrope', sans-serif;
}
.included__check { flex: none; display: grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; background: var(--teal); color: var(--ink); font: 800 12px/1 'Manrope', sans-serif; }

.aside-book { position: sticky; top: 110px; border: 2px solid var(--ink); border-radius: 26px; background: var(--white); overflow: hidden; }
.aside-book__head { padding: 26px; border-bottom: 2px solid var(--ink); }
.aside-book__title { margin: 16px 0 0; font: 800 34px/1 'Bricolage Grotesque', sans-serif; letter-spacing: -.03em; }
.aside-book__meta { font: 700 14px/1 'Manrope', sans-serif; margin-top: 10px; opacity: .7; }
.aside-book__price { display: flex; align-items: baseline; gap: 8px; margin-top: 18px; }
.aside-book__priceValue { font: 800 44px/1 'Bricolage Grotesque', sans-serif; }
.aside-book__priceNote { font: 700 13px/1 'Manrope', sans-serif; opacity: .7; }

/* ------------------------------------------------------------------ carte */

.map {
  position: relative; overflow: hidden; border: 2px solid var(--ink); border-radius: 22px;
  background-color: var(--map);
  background-image: linear-gradient(rgba(14, 14, 14, .09) 1px, transparent 1px), linear-gradient(90deg, rgba(14, 14, 14, .09) 1px, transparent 1px);
  background-size: 46px 46px;
  height: 280px; margin-top: 20px; display: block;
}
.map--lg { height: 320px; margin-top: 46px; border-radius: 26px; background-size: 52px 52px; }
.map:hover { text-decoration: none; }
.map__road-h { position: absolute; left: 0; right: 0; top: 44%; height: 16px; background: var(--cream); border-top: 2px solid rgba(14, 14, 14, .25); border-bottom: 2px solid rgba(14, 14, 14, .25); }
.map--lg .map__road-h { top: 52%; height: 18px; }
.map__road-v { position: absolute; top: 0; bottom: 0; left: 62%; width: 14px; background: var(--cream); border-left: 2px solid rgba(14, 14, 14, .25); border-right: 2px solid rgba(14, 14, 14, .25); }
.map--lg .map__road-v { left: 30%; width: 16px; }
.map__pin { position: absolute; left: 34%; top: 30%; display: flex; flex-direction: column; align-items: center; gap: 6px; }
.map__pinDot { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50% 50% 50% 4px; background: var(--yellow); border: 2px solid var(--ink); transform: rotate(45deg); }
.map__pinLabel { padding: 6px 12px; border-radius: 999px; background: var(--ink); color: var(--cream); font: 800 12px/1 'Manrope', sans-serif; white-space: nowrap; }
.map__decor { position: absolute; inset: 0; opacity: .5; }
.map__switch { position: absolute; left: 16px; top: 16px; z-index: 6; display: flex; gap: 8px; flex-wrap: wrap; }
.map__tag {
  padding: 9px 14px; border-radius: 999px; border: 2px solid var(--ink);
  font: 800 13px/1 'Manrope', sans-serif; cursor: pointer;
  transition: transform .25s var(--ease-pop);
}
.map__tag:hover, .map__tag:focus-visible { transform: translateY(-2px); }
.map__tag.is-active { box-shadow: 0 0 0 3px var(--ink) inset; }
.map__note { position: absolute; right: 18px; bottom: 18px; padding: 8px 13px; border-radius: 999px; background: var(--cream); border: 2px solid var(--ink); font: 700 12px/1 'Manrope', sans-serif; }

/* ---------------------------------------------------------------- l'actu */

.post-card { border: 2px solid var(--ink); border-radius: 24px; background: var(--white); overflow: hidden; transition: transform .55s var(--ease-pop); display: flex; flex-direction: column; }
.post-card:hover { transform: translateY(-13px) scale(1.015); }
.post-card__media { position: relative; height: 190px; border-bottom: 2px solid var(--ink); }
.post-card__body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.post-card__date { font: 700 12px/1 'Manrope', sans-serif; letter-spacing: .1em; opacity: .55; text-transform: uppercase; }
.post-card__title { margin: 12px 0 0; font: 800 24px/1.15 'Bricolage Grotesque', sans-serif; letter-spacing: -.02em; }
.post-card__text { margin: 12px 0 0; font: 500 15.5px/1.55 'Manrope', sans-serif; opacity: .78; }
.post-card__cta { margin-top: 18px; align-self: flex-start; }
.post-card__link { position: absolute; inset: 0; z-index: 3; }

.article { max-width: 760px; }
.article__date { font: 700 12px/1 'Manrope', sans-serif; letter-spacing: .1em; opacity: .55; text-transform: uppercase; }
.article__title { margin: 14px 0 0; font: 800 clamp(34px, 4.2vw, 54px)/1.02 'Bricolage Grotesque', sans-serif; letter-spacing: -.035em; }
.article__media { position: relative; height: 380px; border: 2px solid var(--ink); border-radius: 26px; overflow: hidden; background: var(--ink); margin-top: 28px; }
.prose { margin-top: 28px; font: 500 17px/1.7 'Manrope', sans-serif; }
.prose p { margin: 0 0 16px; }
.prose h2 { margin: 34px 0 12px; font: 800 26px/1.15 'Bricolage Grotesque', sans-serif; }
.prose h3 { margin: 26px 0 10px; font: 800 21px/1.2 'Bricolage Grotesque', sans-serif; }
.prose ul, .prose ol { margin: 0 0 16px; padding-left: 22px; }
.prose li { margin-bottom: 8px; }
.prose a { text-decoration: underline; text-decoration-color: var(--yellow); text-decoration-thickness: 3px; text-underline-offset: 3px; }
.prose blockquote { margin: 22px 0; padding: 18px 22px; border-left: 6px solid var(--yellow); background: var(--white); border-radius: 0 14px 14px 0; }

/* ---------------------------------------------------------------- contact */

.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(310px, 1fr)); gap: 44px; align-items: start; }
.contact-title { margin: 16px 0 0; font: 800 clamp(38px, 4.4vw, 58px)/1 'Bricolage Grotesque', sans-serif; letter-spacing: -.035em; }
.contact-lead { margin: 18px 0 0; max-width: 520px; font: 500 17.5px/1.6 'Manrope', sans-serif; opacity: .78; }
.address-list { display: grid; gap: 14px; margin-top: 32px; }
.address { border: 2px solid var(--ink); border-radius: 20px; padding: 22px; }
.address__name { font: 800 20px/1 'Bricolage Grotesque', sans-serif; }
.address__lines { font: 600 15px/1.5 'Manrope', sans-serif; margin-top: 8px; }
.address__note { font: 600 13.5px/1.5 'Manrope', sans-serif; opacity: .7; margin-top: 6px; }
.address__link { display: inline-block; margin-top: 12px; font: 700 13px/1 'Manrope', sans-serif; }
.hours { border: 2px dashed rgba(14, 14, 14, .3); border-radius: 20px; padding: 22px; }
.hours__label { font: 800 12px/1 'Manrope', sans-serif; letter-spacing: .12em; opacity: .6; }
.hours__value { font: 600 15px/1.6 'Manrope', sans-serif; margin-top: 10px; }

/* --------------------------------------------------------------- formulaires */

.form { border: 2px solid var(--ink); border-radius: 26px; background: var(--white); padding: 28px; display: flex; flex-direction: column; gap: 12px; }
.form--aside { border: 0; border-radius: 0; padding: 26px; }
.form__title { font: 800 22px/1 'Bricolage Grotesque', sans-serif; }
.form__kicker { font: 800 12px/1 'Manrope', sans-serif; letter-spacing: .14em; opacity: .6; }
.form__note { font: 500 12.5px/1.5 'Manrope', sans-serif; opacity: .6; text-align: center; }
.form__label { display: block; font: 700 12px/1 'Manrope', sans-serif; letter-spacing: .1em; opacity: .6; margin-bottom: -4px; }
.field {
  width: 100%; padding: 15px 16px; border: 2px solid var(--ink); border-radius: 14px;
  background: var(--cream); font: 500 15px/1.25 'Manrope', sans-serif; outline: none;
  transition: box-shadow .3s ease, background-color .3s ease;
}
.field:focus { box-shadow: 0 0 0 4px var(--yellow); background-color: var(--white); }
textarea.field { resize: vertical; line-height: 1.5; min-height: 130px; }
.needs { display: flex; gap: 10px; flex-wrap: wrap; }
.need {
  border: 2px solid var(--ink); cursor: pointer; padding: 11px 16px; border-radius: 999px;
  background-color: transparent; color: var(--ink); font: 700 13px/1 'Manrope', sans-serif;
  transition: background-color .3s ease, color .3s ease;
}
.need.is-active { background-color: var(--ink); color: var(--cream); }
.honey { position: absolute !important; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.alert { padding: 14px 16px; border-radius: 14px; border: 2px solid var(--ink); font: 700 14px/1.4 'Manrope', sans-serif; }
.alert--ok { background: var(--teal); }
.alert--error { background: var(--yellow); }
.form__consent { font: 500 11.5px/1.5 'Manrope', sans-serif; opacity: .55; }

/* ----------------------------------------------------------- mentions légales */

.legal-title { margin: 16px 0 0; font: 800 clamp(36px, 4.2vw, 56px)/1 'Bricolage Grotesque', sans-serif; letter-spacing: -.035em; }
.legal-lead { margin: 16px 0 0; max-width: 560px; font: 500 16.5px/1.6 'Manrope', sans-serif; opacity: .75; }
.legal-blocks { display: grid; gap: 14px; margin-top: 34px; }
.legal-block { border: 2px solid var(--ink); border-radius: 20px; background: var(--white); padding: 26px 28px; }
.legal-block h2 { margin: 0; font: 800 21px/1.15 'Bricolage Grotesque', sans-serif; letter-spacing: -.02em; }
.legal-block p { margin: 12px 0 0; font: 500 15.5px/1.7 'Manrope', sans-serif; opacity: .8; white-space: pre-line; }

/* ----------------------------------------------------------------- footer */

.footer { margin-top: 88px; background: var(--ink); color: var(--cream); border-top: 2px solid var(--ink); }
.footer__inner { padding-top: 64px; padding-bottom: 26px; display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 36px; }
.footer__logo { display: block; width: 154px; height: auto; }
.footer__about { margin: 18px 0 0; font: 500 14.5px/1.6 'Manrope', sans-serif; opacity: .72; max-width: 280px; }
.footer__social { display: flex; gap: 10px; margin-top: 20px; }
.footer__socialLink {
  display: grid; place-items: center; width: 40px; height: 40px; border-radius: 12px;
  background: rgba(255, 248, 234, .1); color: var(--cream); font: 800 14px/1 'Manrope', sans-serif;
  transition: background-color .35s ease, color .35s ease, transform .5s var(--ease-pop);
}
.footer__socialLink:hover { background-color: var(--yellow); color: var(--ink); transform: translateY(-7px) scale(1.035); text-decoration: none; }
.footer__colTitle { font: 800 12px/1 'Manrope', sans-serif; letter-spacing: .14em; opacity: .5; }
.footer__links { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; margin-top: 18px; }
.footer__link {
  border: 0; background-color: transparent; padding: 0 0 4px; cursor: pointer; text-align: left;
  color: var(--cream); font: 600 15px/1.3 'Manrope', sans-serif;
  background-image: linear-gradient(var(--yellow), var(--yellow));
  background-repeat: no-repeat; background-position: 0 100%; background-size: 0% 1.5px;
  transition: background-size .45s var(--ease-soft), color .3s ease;
}
.footer__link:hover, .footer__link:focus-visible { background-size: 100% 1.5px; color: var(--yellow); text-decoration: none; }
.footer__bottom {
  padding-top: 22px; padding-bottom: 34px; border-top: 1px solid rgba(255, 248, 234, .15);
  display: flex; gap: 16px; justify-content: space-between; flex-wrap: wrap;
  font: 600 13px/1.5 'Manrope', sans-serif; opacity: .6;
}
.footer__legal { display: flex; gap: 18px; flex-wrap: wrap; }
.footer__legal a { color: var(--cream); }

/* --------------------------------------------------- barre CTA collante */

.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  display: flex; justify-content: center; padding: 0 16px 20px; pointer-events: none;
}
.sticky-cta__pill {
  pointer-events: auto; display: flex; align-items: center; gap: 10px; padding: 10px;
  border-radius: 999px; background: var(--ink); border: 2px solid var(--ink);
  box-shadow: 0 10px 30px rgba(14, 14, 14, .22);
}
.sticky-cta__slot { position: relative; display: inline-flex; }
.sticky-cta__halo { position: absolute; inset: 0; border-radius: 999px; background: transparent; pointer-events: none; }
.sticky-cta__slot--halo .sticky-cta__halo { background: var(--yellow); animation: ioioHalo 2.4s ease-out infinite; }
.sticky-cta__btn {
  position: relative; cursor: pointer; border-radius: 999px;
  background-repeat: no-repeat; background-position: 0 0; background-size: 0% 100%;
  font: 800 14.5px/1 'Manrope', sans-serif;
  transition: background-size .5s var(--ease-soft), color .35s ease, transform .5s var(--ease-pop);
}
.sticky-cta__btn:hover, .sticky-cta__btn:focus-visible { background-size: 100% 100%; text-decoration: none; }
.sticky-cta__btn--ghost {
  border: 2px solid var(--cream); padding: 15px 24px; background-color: transparent;
  background-image: linear-gradient(var(--cream), var(--cream)); color: var(--cream);
}
.sticky-cta__btn--ghost:hover, .sticky-cta__btn--ghost:focus-visible { color: var(--ink); }
.sticky-cta__btn--solid {
  border: 0; padding: 16px 26px; background-color: var(--yellow);
  background-image: linear-gradient(var(--ink), var(--ink)); color: var(--ink);
}
.sticky-cta__btn--solid:hover, .sticky-cta__btn--solid:focus-visible { color: var(--cream); transform: translateY(-5px) scale(1.04); }
.sticky-cta__short { display: none; }

/* ------------------------------------------------------------ assistant IA */

.bot { position: fixed; right: 20px; bottom: 22px; z-index: 70; display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
.bot__panel {
  width: 378px; max-width: calc(100vw - 40px); max-height: calc(100vh - 130px);
  display: flex; flex-direction: column;
  border: 2px solid var(--ink); border-radius: 24px; background: var(--cream); overflow: hidden;
  animation: ioioPop .35s var(--ease-soft);
  box-shadow: 0 18px 44px rgba(14, 14, 14, .24);
}
.bot__panel[hidden] { display: none; }
.bot__head { display: flex; align-items: center; gap: 12px; padding: 16px 18px; background: var(--ink); color: var(--cream); }
.bot__mark { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 12px; background: var(--ink) center/cover url('../img/ioio-mark.png'); flex: none; }
.bot__title { display: block; font: 800 15px/1 'Manrope', sans-serif; }
.bot__sub { display: block; margin-top: 4px; font: 600 11.5px/1.2 'Manrope', sans-serif; opacity: .6; }
.bot__close {
  border: 0; background: rgba(255, 248, 234, .12); color: var(--cream);
  width: 30px; height: 30px; border-radius: 9px; cursor: pointer;
  font: 700 16px/1 'Manrope', sans-serif; transition: background-color .3s ease, color .3s ease; flex: none;
}
.bot__close:hover { background-color: var(--yellow); color: var(--ink); }
.bot__log { flex: 1; min-height: 120px; max-height: 330px; overflow-y: auto; padding: 18px; display: flex; flex-direction: column; gap: 12px; }
.bot__msg {
  align-self: flex-start; max-width: 86%; padding: 13px 15px;
  border-radius: 16px 16px 16px 4px; background: var(--white); color: var(--ink);
  border: 2px solid var(--ink); font: 500 14.5px/1.5 'Manrope', sans-serif;
}
.bot__msg--me { align-self: flex-end; border-radius: 16px 16px 4px 16px; background: var(--yellow); }
.bot__sources { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.bot__source {
  padding: 5px 9px; border-radius: 999px; background: var(--cream);
  border: 1.5px solid rgba(14, 14, 14, .25); font: 700 11px/1 'Manrope', sans-serif; color: var(--ink);
}
a.bot__source:hover { background: var(--yellow); text-decoration: none; }
/* Boutons d'action : la réponse mène quelque part, en un clic. */
.bot__actions { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 11px; }
.bot__action {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 13px; border-radius: 999px; background: var(--ink); color: var(--cream);
  border: 2px solid var(--ink); font: 800 11.5px/1 'Manrope', sans-serif;
  transition: background-color .25s ease, color .25s ease, transform .25s var(--ease-pop);
}
.bot__action::after { content: '→'; font-size: 12px; }
a.bot__action:hover { background: var(--yellow); color: var(--ink); text-decoration: none; transform: translateY(-2px); }
.bot__typing { align-self: flex-start; display: flex; gap: 5px; padding: 14px 16px; border-radius: 16px 16px 16px 4px; background: var(--white); border: 2px solid var(--ink); }
.bot__typing[hidden] { display: none; }
.bot__typing span { width: 7px; height: 7px; border-radius: 50%; background: var(--ink); animation: ioioDot 1.1s infinite; }
.bot__typing span:nth-child(2) { animation-delay: .15s; }
.bot__typing span:nth-child(3) { animation-delay: .3s; }
.bot__suggestions { padding: 0 18px 14px; display: flex; gap: 7px; flex-wrap: wrap; }
.bot__suggestion {
  border: 1.5px solid var(--ink); cursor: pointer; padding: 8px 12px; border-radius: 999px;
  background-color: var(--white); background-image: linear-gradient(var(--yellow), var(--yellow));
  background-repeat: no-repeat; background-position: 0 0; background-size: 0% 100%;
  font: 700 12px/1 'Manrope', sans-serif;
  transition: background-size .4s var(--ease-soft);
}
.bot__suggestion:hover, .bot__suggestion:focus-visible { background-size: 100% 100%; }
.bot__form { display: flex; gap: 9px; padding: 14px 16px; border-top: 2px solid var(--ink); background: var(--white); }
.bot__input {
  flex: 1; padding: 13px 14px; border: 2px solid var(--ink); border-radius: 12px;
  background: var(--cream); font: 500 14px/1 'Manrope', sans-serif; outline: none;
  transition: box-shadow .3s ease; min-width: 0;
}
.bot__input:focus { box-shadow: 0 0 0 3px var(--yellow); }
.bot__send {
  border: 0; cursor: pointer; width: 46px; border-radius: 12px; flex: none;
  background-color: var(--ink); color: var(--cream); font: 700 17px/1 'Manrope', sans-serif;
  transition: background-color .3s ease, color .3s ease;
}
.bot__send:hover { background-color: var(--yellow); color: var(--ink); }
.bot__footer { padding: 0 16px 14px; font: 600 11px/1.4 'Manrope', sans-serif; opacity: .5; background: var(--white); }
.bot__launcher {
  display: flex; align-items: center; gap: 11px; border: 2px solid var(--ink); cursor: pointer;
  padding: 11px 16px 11px 12px; border-radius: 18px;
  background-color: var(--cream); background-image: linear-gradient(var(--yellow), var(--yellow));
  background-repeat: no-repeat; background-position: 0 0; background-size: 0% 100%;
  transition: background-size .46s var(--ease-soft), transform .5s var(--ease-pop);
  box-shadow: 0 12px 26px rgba(14, 14, 14, .2);
}
.bot__launcher:hover, .bot__launcher:focus-visible { background-size: 100% 100%; transform: translateY(-7px) scale(1.035); text-decoration: none; }
.bot__launcherMark { position: relative; display: grid; place-items: center; width: 38px; height: 38px; border-radius: 12px; background: var(--ink) center/cover url('../img/ioio-mark.png'); flex: none; }
.bot__launcherDot { position: absolute; right: -4px; top: -4px; width: 12px; height: 12px; border-radius: 50%; background: var(--yellow); border: 2px solid var(--cream); }
.bot__launcherText { text-align: left; }
.bot__launcherTitle { display: block; font: 800 14px/1 'Manrope', sans-serif; }
.bot__launcherSub { display: block; margin-top: 4px; font: 600 11px/1 'Manrope', sans-serif; opacity: .6; }

/* ------------------------------------------------------- pop-up de sortie */

.exit { position: fixed; inset: 0; z-index: 90; display: grid; place-items: center; padding: 24px; background: rgba(14, 14, 14, .62); animation: ioioFade .3s ease; }
.exit[hidden] { display: none; }
.exit__card { width: 100%; max-width: 620px; border: 2px solid var(--ink); border-radius: 28px; background: var(--cream); overflow: hidden; animation: ioioPop .45s var(--ease-soft); }
.exit__head { position: relative; padding: 34px 34px 0; background: var(--yellow); border-bottom: 2px solid var(--ink); }
.exit__close {
  position: absolute; right: 18px; top: 18px; border: 2px solid var(--ink); background: var(--cream);
  width: 34px; height: 34px; border-radius: 11px; cursor: pointer; font: 700 17px/1 'Manrope', sans-serif;
  transition: background-color .3s ease, transform .3s ease;
}
.exit__close:hover { background-color: var(--yellow); transform: rotate(90deg); }
.exit__kicker { font: 800 12px/1 'Manrope', sans-serif; letter-spacing: .16em; }
.exit__title { margin: 16px 0 26px; font: 800 clamp(30px, 3.4vw, 44px)/1 'Bricolage Grotesque', sans-serif; letter-spacing: -.03em; max-width: 440px; text-wrap: balance; }
.exit__body { padding: 28px 34px 34px; }
.exit__text { margin: 0; font: 500 16.5px/1.6 'Manrope', sans-serif; opacity: .8; max-width: 480px; }
.exit__form { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 22px; }
.exit__input { flex: 1; min-width: 220px; padding: 16px 17px; border: 2px solid var(--ink); border-radius: 14px; background: var(--white); font: 500 15px/1 'Manrope', sans-serif; outline: none; transition: box-shadow .3s ease; }
.exit__input:focus { box-shadow: 0 0 0 4px var(--yellow); }
.exit__submit { border: 0; cursor: pointer; padding: 16px 26px; border-radius: 14px; background-color: var(--ink); background-image: linear-gradient(var(--yellow), var(--yellow)); background-repeat: no-repeat; background-position: 0 0; background-size: 0% 100%; color: var(--cream); font: 800 15px/1 'Manrope', sans-serif; transition: background-size .55s var(--ease-soft), color .35s ease; }
.exit__submit:hover, .exit__submit:focus-visible { background-size: 100% 100%; color: var(--ink); }
.exit__proof { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 20px; font: 600 13px/1.4 'Manrope', sans-serif; opacity: .65; }

/* ------------------------------------------------------------------ erreur */

.error-page { padding: 90px 0 40px; text-align: center; }
.error-page h1 { margin: 0; font: 800 clamp(48px, 9vw, 120px)/1 'Bricolage Grotesque', sans-serif; }
.error-page h2 { margin: 18px 0 0; font: 800 clamp(26px, 3.2vw, 40px)/1.1 'Bricolage Grotesque', sans-serif; }
.error-page p { margin: 18px auto 30px; max-width: 520px; font: 500 17px/1.6 'Manrope', sans-serif; opacity: .78; }
.error-page__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ------------------------------------------------------------- responsive */

@media (max-width: 1080px) {
  .hero__inner { grid-template-columns: 1fr; gap: 44px; padding-top: 56px; padding-bottom: 64px; }
  .hero__media { max-width: 520px; }
  .fiche { grid-template-columns: 1fr; gap: 28px; }
  .aside-book { position: static; }
}

@media (max-width: 880px) {
  .header__inner { flex-wrap: wrap; gap: 14px; }
  .nav {
    order: 3; width: 100%; margin-left: 0; justify-content: flex-start;
    gap: 16px; max-height: 0; overflow: hidden; transition: max-height .4s var(--ease-soft);
  }
  .nav.is-open { max-height: 420px; padding-bottom: 12px; }
  .nav__toggle {
    display: grid; place-items: center; margin-left: auto; width: 46px; height: 46px;
    border: 2px solid currentColor; border-radius: 14px; background: transparent;
    color: inherit; cursor: pointer; font: 800 18px/1 'Manrope', sans-serif;
  }
  .header.is-scrolled .nav__toggle { color: var(--cream); }
  .nav__link { padding: 8px 0; font-size: 14px; }
  .hero__thread, .hero__blob { display: none; }
  .float-card--price { left: 8px; bottom: 12px; }
  .float-card--claim { right: 8px; top: 12px; margin-top: 0; }
  .section, .section--tight { padding-top: 64px; }
  .band { padding: 40px 24px; }
  .space__inner { padding-top: 56px; padding-bottom: 56px; }
  .fiche__main { height: 300px; }
  .article__media { height: 260px; }
  .footer { margin-top: 64px; }
}

@media (max-width: 620px) {
  .shell { padding-left: 18px; padding-right: 18px; }
  .topbar__facts { font-size: 12px; gap: 8px; }
  .topbar__sep { display: none; }
  .hero__actions .btn, .band__actions .btn { width: 100%; }
  .hero__stats { gap: 20px; }
  .sticky-cta { padding: 0 10px 12px; }
  .sticky-cta__pill { width: 100%; gap: 8px; padding: 8px; }
  .sticky-cta__slot { flex: 1; }
  .sticky-cta__btn { width: 100%; padding: 14px 12px; font-size: 13.5px; }
  .sticky-cta__long { display: none; }
  .sticky-cta__short { display: inline; }
  .bot { right: 12px; bottom: 84px; }
  .bot__launcherText { display: none; }
  .bot__launcher { padding: 11px; }
  .space__gallery { grid-template-columns: 1fr; }
  .space__shot--main { grid-column: span 1; height: 220px; }
  .fiche__thumbs { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .fiche__thumb { height: 80px; }
  .exit__head { padding: 26px 22px 0; }
  .exit__body { padding: 22px; }
  :root { --sticky-space: 108px; }
}

/* Respect de prefers-reduced-motion : on coupe les mouvements décoratifs. */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee__track, .float-card, .hero__thread, .sticky-cta__slot--halo .sticky-cta__halo,
  .bot__typing span, .page-enter, .bot__panel, .exit, .exit__card { animation: none !important; }
  .js [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
  .slideshow__slide.is-active { transform: none; }
  * { transition-duration: .01ms !important; }
  .btn:hover, .office-card:hover, .place-card:hover, .post-card:hover, .amenity:hover { transform: none !important; }
}

@media print {
  .sticky-cta, .bot, .exit, .topbar, .header__progress { display: none !important; }
  body { padding-bottom: 0; }
}

/* ------------------------------------------------- consentement aux cookies */

.consent {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
  display: flex; justify-content: center; padding: 0 16px 16px; pointer-events: none;
}
.consent[hidden] { display: none; }
.consent__card {
  pointer-events: auto; width: 100%; max-width: 940px;
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
  padding: 20px 24px; border: 2px solid var(--ink); border-radius: 22px;
  background: var(--cream); box-shadow: 0 16px 40px rgba(14, 14, 14, .26);
  animation: ioioPop .4s var(--ease-soft);
}
.consent__body { flex: 1; min-width: 260px; }
.consent__title { margin: 0; font: 800 20px/1.1 'Bricolage Grotesque', sans-serif; letter-spacing: -.02em; }
.consent__text { margin: 8px 0 0; font: 500 14px/1.55 'Manrope', sans-serif; opacity: .8; }
.consent__actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }

.consent-panel {
  position: fixed; inset: 0; z-index: 95; display: grid; place-items: center;
  padding: 24px; background: rgba(14, 14, 14, .62); animation: ioioFade .3s ease;
}
.consent-panel[hidden] { display: none; }
.consent-panel__card {
  width: 100%; max-width: 640px; max-height: calc(100vh - 48px); overflow-y: auto;
  border: 2px solid var(--ink); border-radius: 28px; background: var(--cream);
  animation: ioioPop .45s var(--ease-soft);
}
.consent-panel__head { position: relative; padding: 30px 32px 22px; background: var(--yellow); border-bottom: 2px solid var(--ink); }
.consent-panel__title { margin: 14px 0 0; font: 800 clamp(26px, 3vw, 34px)/1 'Bricolage Grotesque', sans-serif; letter-spacing: -.03em; }
.consent-panel__body { padding: 24px 32px 30px; }
.consent-panel__actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 22px; }

.consent-cat { margin-top: 18px; padding: 18px 20px; border: 2px solid var(--ink); border-radius: 18px; background: var(--white); }
.consent-cat__head { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.consent-cat__name { font: 800 16px/1.2 'Bricolage Grotesque', sans-serif; }
.consent-cat__always { font: 700 11px/1 'Manrope', sans-serif; letter-spacing: .08em; padding: 7px 11px; border-radius: 999px; background: var(--sand); border: 1.5px solid var(--ink); white-space: nowrap; }
.consent-cat__text { margin: 10px 0 0; font: 500 14px/1.55 'Manrope', sans-serif; opacity: .78; }
.consent-cat__cookies { margin-top: 10px; font: 600 11.5px/1.5 'Manrope', sans-serif; opacity: .55; }
.consent-cat__cookies code { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; }

/* Interrupteur : deux états lisibles sans couleur seule (position + coche). */
.switch { position: relative; display: inline-flex; align-items: center; cursor: pointer; flex: none; }
.switch input { position: absolute; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.switch__track {
  display: block; width: 58px; height: 32px; border-radius: 999px;
  border: 2px solid var(--ink); background: var(--sand);
  transition: background-color .3s ease;
}
.switch__knob {
  display: block; width: 22px; height: 22px; margin: 3px; border-radius: 50%;
  background: var(--ink); transition: transform .35s var(--ease-pop);
}
.switch input:checked + .switch__track { background: var(--teal); }
.switch input:checked + .switch__track .switch__knob { transform: translateX(26px); }
.switch input:focus-visible + .switch__track { box-shadow: 0 0 0 4px var(--yellow); }

/* Le bandeau cookies passe devant la barre CTA tant qu'aucun choix n'est fait. */
.consent:not([hidden]) ~ .sticky-cta { opacity: 0; pointer-events: none; }

@media (max-width: 620px) {
  .consent__card { padding: 18px; gap: 16px; }
  .consent__actions { width: 100%; }
  .consent__actions .btn { flex: 1; }
  .consent-panel__head { padding: 24px 22px 18px; }
  .consent-panel__body { padding: 20px 22px 26px; }
}

/* Vignette de remplacement : aplat de marque plutôt qu'une photo agrandie. */
.cover-placeholder::before {
  content: ''; position: absolute; left: 50%; top: 50%;
  width: 74px; height: 74px; margin: -58px 0 0 -37px;
  border: 14px solid currentColor; border-radius: 50%; opacity: .18;
}
.cover-placeholder { flex-direction: column; }
.cover-placeholder span { position: relative; margin-top: 42px; }
.footer__cookies {
  border: 0; background: none; padding: 0; cursor: pointer;
  color: var(--cream); font: 600 13px/1.5 'Manrope', sans-serif;
  text-decoration: underline; text-decoration-color: rgba(255, 248, 234, .4);
  text-underline-offset: 3px;
}
.footer__cookies:hover { text-decoration-color: var(--yellow); }

/* ------------------------------------------------------- bouton deux lignes */

.btn--stacked { flex-direction: column; gap: 5px; padding-top: 15px; padding-bottom: 15px; line-height: 1.2; }
.btn__main { font: 800 15px/1.2 'Manrope', sans-serif; }
.btn__sub { font: 600 12.5px/1.2 'Manrope', sans-serif; opacity: .72; }

/* --------------------------------------------------------------- album photo */

.album { margin-top: 44px; }
.album__head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.album__title { margin: 0; font: 800 24px/1.15 'Bricolage Grotesque', sans-serif; letter-spacing: -.02em; }
.album__count { font: 700 13px/1 'Manrope', sans-serif; opacity: .55; }
.album__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 12px; margin-top: 18px; }
.album__item {
  position: relative; padding: 0; border: 2px solid var(--ink); border-radius: 16px;
  overflow: hidden; background: var(--ink); cursor: zoom-in; aspect-ratio: 4 / 3;
  transition: transform .45s var(--ease-pop);
}
.album__item:hover, .album__item:focus-visible { transform: translateY(-6px) scale(1.03); }
.album__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------------------------------------------------------------- lightbox */

.lightbox {
  position: fixed; inset: 0; z-index: 100; display: grid; grid-template-rows: auto 1fr auto;
  background: rgba(14, 14, 14, .93); animation: ioioFade .25s ease;
}
.lightbox[hidden] { display: none; }
.lightbox__bar { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 22px; color: var(--cream); }
.lightbox__counter { font: 800 13px/1 'Manrope', sans-serif; letter-spacing: .1em; opacity: .7; }
.lightbox__close {
  border: 2px solid var(--cream); background: transparent; color: var(--cream);
  width: 42px; height: 42px; border-radius: 13px; cursor: pointer;
  font: 700 20px/1 'Manrope', sans-serif; transition: background-color .3s ease, color .3s ease, transform .3s ease;
}
.lightbox__close:hover { background: var(--yellow); border-color: var(--yellow); color: var(--ink); transform: rotate(90deg); }
.lightbox__stage { position: relative; display: grid; place-items: center; padding: 0 22px; min-height: 0; }
.lightbox__img {
  max-width: min(1100px, 100%); max-height: 100%; object-fit: contain;
  border: 2px solid var(--ink); border-radius: 20px; background: var(--ink);
  animation: ioioFade .3s ease;
}
.lightbox__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 54px; height: 54px; border-radius: 50%; cursor: pointer;
  border: 2px solid var(--ink); background: var(--cream); color: var(--ink);
  font: 700 22px/1 'Manrope', sans-serif;
  transition: background-color .3s ease, transform .3s ease;
}
.lightbox__nav:hover { background: var(--yellow); transform: translateY(-50%) scale(1.08); }
.lightbox__nav--prev { left: 14px; }
.lightbox__nav--next { right: 14px; }
.lightbox__caption { padding: 16px 22px 24px; color: var(--cream); font: 600 14px/1.5 'Manrope', sans-serif; text-align: center; opacity: .85; }

@media (max-width: 620px) {
  .lightbox__nav { width: 46px; height: 46px; }
  .lightbox__nav--prev { left: 6px; }
  .lightbox__nav--next { right: 6px; }
  .lightbox__stage { padding: 0 8px; }
  .album__grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); }
}

/* ------------------------------------------------------------- carte réelle */

/* Repli quand aucune adresse n'est renseignée : le décor et l'adresse, sans
   plan. Dès qu'une adresse existe, l'iframe est rendue par PHP à sa place. */
.map__cover {
  position: absolute; inset: 0; z-index: 4;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  padding: 24px; text-align: center;
  background: color-mix(in srgb, var(--sand) 78%, transparent);
}
.map__address { font: 800 15px/1.3 'Manrope', sans-serif; letter-spacing: .01em; }
.map__frame { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; z-index: 5; }
.map.is-loaded .map__decor, .map.is-loaded .map__cover { display: none; }
.map.is-loaded .map__switch { z-index: 6; }
.map__tag { cursor: pointer; z-index: 4; }
.map__tag[aria-pressed="true"] { box-shadow: 0 0 0 4px rgba(14, 14, 14, .18); }
