/* ============================================
   LUCIENNE — Stats Bar, Marquee & Gallery
   ============================================ */

/* ── Stats Bar ── */
.stats {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 48px 56px;
  gap: 20px;
  flex-wrap: wrap;
}

.stat { text-align: center; }

.stat-n {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-n span { color: var(--rose); }

.stat-l {
  font-size: .6rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--mid);
  font-weight: 400;
}

.stat-div {
  width: 1px;
  height: 50px;
  background: var(--border);
}

/* ── Marquee ── */
.marquee-wrap {
  overflow: hidden;
  background: var(--ink);
  padding: 15px 0;
}

.marquee-track {
  display: flex;
  animation: marquee 20s linear infinite;
  width: max-content;
}

.marquee-item {
  font-family: var(--font-serif);
  font-size: .82rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .6);
  padding: 0 44px;
  white-space: nowrap;
}

.marquee-item b { color: var(--rose); }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Gallery ── */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 78vh;
}

.gallery-cell {
  overflow: hidden;
  position: relative;
}

.gallery-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform .8s ease;
}

.gallery-cell:hover img { transform: scale(1.05); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .stats { padding: 40px 24px; }
  .stat-div { display: none; }
  .gallery {
    grid-template-columns: 1fr 1fr;
    height: auto;
  }
  .gallery-cell { height: 55vw; }
  .gallery-cell:last-child { display: none; }
}
