/* =========================================================================
   CONCEPT B — « Le mur qui se compose »
   Mur éditorial : les avis arrivent en place au scroll (stagger), ancré au 5,0.
   ========================================================================= */

.wall { display: flex; flex-direction: column; gap: clamp(54px, 8vh, 96px); }

.wall-theme { display: grid; grid-template-columns: 300px 1fr; gap: clamp(28px, 4vw, 60px); align-items: start; }
.wall-theme__head {
  position: sticky; top: 92px;
  display: flex; flex-direction: column; gap: 14px;
}
.wall-theme__head .theme-head__kicker::before {
  content: ""; display: block; width: 40px; height: 1px; background: var(--or); margin-bottom: 14px;
}

/* masonry via colonnes */
.wall-grid { columns: 2; column-gap: 18px; }
.wall-grid .rcard { break-inside: avoid; margin-bottom: 18px; }

/* avis « vedette » (Local Guide riche) sur toute la largeur */
.rcard--feature { box-shadow: inset 0 0 0 1px var(--filet); background: var(--surface-2); }
.rcard--feature .rcard__text { font-size: 16px; }

@media (max-width: 980px) {
  .wall-theme { grid-template-columns: 1fr; gap: 22px; }
  .wall-theme__head { position: static; }
}
@media (max-width: 620px) {
  .wall-grid { columns: 1; }
}

/* =========================================================================
   CONCEPT C — « Carrousel éditorial par thème »
   Une grande citation à la fois, héros 5,0 persistant, filmstrip de thèmes.
   ========================================================================= */

.carousel {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(28px, 4vw, 70px);
  align-items: stretch;
  min-height: 440px;
}
.carside { order: 1; }
.carstage { order: 2; }

/* scène de citation */
.carstage {
  position: relative;
  background: linear-gradient(170deg, #FFFFFF, var(--noir-soft));
  box-shadow: inset 0 0 0 1px var(--filet), 0 26px 60px -40px rgba(140,107,34,0.4);
  border-radius: 5px;
  padding: clamp(34px, 4vw, 64px);
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden;
  min-height: 460px;
}
.carstage::before {
  content: "\201C";
  position: absolute; top: clamp(56px, 8vw, 96px); left: clamp(12px,1.6vw,24px);
  font-family: var(--serif); font-size: clamp(74px, 9vw, 120px);
  color: rgba(201,168,76,0.09); line-height: 1; pointer-events: none; z-index: 0;
}
.carstage__theme {
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.26em;
  text-transform: uppercase; color: var(--or); margin-bottom: 22px; position: relative; z-index: 1;
}

.quote-slide {
  position: absolute;
  inset: clamp(34px, 4vw, 64px);
  display: flex; flex-direction: column; justify-content: center;
  opacity: 0; pointer-events: none;
}
.quote-slide.is-active { opacity: 1; pointer-events: auto; position: relative; inset: auto; z-index: 1; }
.quote-slide__text {
  font-family: var(--serif);
  font-size: clamp(21px, 2.5vw, 33px);
  line-height: 1.34; color: var(--blanc); font-weight: 500;
  letter-spacing: -0.005em; text-wrap: pretty;
  max-width: 24ch;
}
.quote-slide__foot { display: flex; align-items: center; gap: 16px; margin-top: clamp(24px, 3vh, 38px); }
.quote-slide__foot .rcard__avatar { width: 50px; height: 50px; }
.quote-slide__who { display: flex; flex-direction: column; gap: 5px; }
.quote-slide__name { font-size: 15.5px; font-weight: 600; }
.quote-slide__meta { font-size: 12px; color: var(--gris-2); display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.quote-slide__foot .stars { font-size: 14px; }

/* colonne droite : héros 5,0 + filmstrip */
.carside { display: flex; flex-direction: column; gap: 22px; }
.carside__hero {
  background: var(--noir-soft);
  box-shadow: inset 0 0 0 1px var(--filet);
  border-radius: 5px;
  padding: clamp(22px, 2.6vw, 32px);
  display: flex; align-items: center; gap: clamp(18px, 2vw, 26px);
}
.carside__score { font-family: var(--serif); font-size: clamp(46px,5vw,66px); color: var(--or); font-weight: 600; line-height: 0.85; white-space: nowrap; }
.carside__heroR { display: flex; flex-direction: column; gap: 7px; }
.carside__heroR .stars { font-size: 17px; }
.carside__heroR span { font-size: 12.5px; color: var(--gris); letter-spacing: 0.03em; }

/* thèmes (tabs) */
.filmstrip { display: flex; flex-direction: column; gap: 8px; flex: 1; }
.film-tab {
  text-align: left; cursor: pointer; border: none; background: transparent;
  font-family: var(--sans); color: var(--gris-2);
  padding: 15px 18px; border-radius: 4px;
  box-shadow: inset 0 0 0 1px var(--filet-soft);
  transition: color .35s, box-shadow .35s, background .35s;
  display: flex; align-items: baseline; gap: 12px;
}
.film-tab:hover { color: var(--blanc); box-shadow: inset 0 0 0 1px var(--filet); }
.film-tab[aria-selected="true"] {
  color: var(--blanc);
  background: linear-gradient(90deg, rgba(201,168,76,0.1), transparent);
  box-shadow: inset 0 0 0 1px var(--or);
}
.film-tab__num { font-family: var(--serif); font-style: italic; color: var(--or); font-size: 15px; }
.film-tab__t { font-size: 13.5px; line-height: 1.3; letter-spacing: 0.01em; }
.film-tab__count { margin-left: auto; font-size: 11px; color: var(--gris-3); align-self: center; }

/* contrôles carrousel */
.car-ctl { display: flex; align-items: center; gap: 16px; margin-top: 26px; position: relative; }
.car-ctl__btn {
  width: 44px; height: 44px; border-radius: 50%; cursor: pointer; border: none;
  background: transparent; box-shadow: inset 0 0 0 1px var(--filet);
  color: var(--or); display: grid; place-items: center; transition: background .3s, transform .3s;
}
.car-ctl__btn:hover { background: rgba(201,168,76,0.1); transform: translateY(-2px); }
.car-ctl__btn svg { width: 16px; height: 16px; }
.car-ctl__prog { flex: 1; height: 1px; background: var(--filet-soft); position: relative; overflow: hidden; }
.car-ctl__prog i { position: absolute; left: 0; top: 0; height: 100%; width: 0; background: var(--or); }
.car-ctl__idx { font-family: var(--serif); font-style: italic; font-size: 15px; color: var(--gris); min-width: 56px; text-align: right; }
.car-ctl__idx b { color: var(--or); font-style: normal; }

@media (max-width: 900px) {
  .carousel { grid-template-columns: 1fr; }
  .carside { flex-direction: column; }
  .carstage { min-height: 380px; }
}
