/* ============================================
   Section boutique — Signé Madeleine
============================================ */
.collection-section {
  padding-bottom: clamp(24px, 5vw, 80px);
}

.home-collection {
  padding: 0;
  display: block;
  background: #2c2925;
}

/* Header */
.home-collection__header {
  padding: clamp(40px, 6vh, 72px) clamp(24px, 5vw, 80px) clamp(32px, 5vh, 56px);
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

/* Panels */
.panels-track {
  position: relative;
  overflow: clip;
}

.panel {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100dvh;
  min-height: 480px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 0.5px solid rgba(196, 169, 106, 0.1);
  overflow: hidden;
}

.p1 { z-index: 1; }
.p2 { z-index: 2; }
.p3 { z-index: 3; }

/* Image */
.panel__visual {
  position: relative;
  height: 100%;
  min-height: 480px;
  overflow: hidden;
}

.panel__bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transition: transform 0.8s cubic-bezier(.25, .46, .45, .94);
}

.panel:hover .panel__bg-img {
  transform: scale(1);
}

.panel__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    radial-gradient(circle at 35% 35%, rgba(245, 230, 190, 0.12), transparent 35%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.62));
  box-shadow: inset 0 0 80px 25px rgba(0, 0, 0, 0.35);
}

.panel__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.panel__overlay--1,
.panel__overlay--3 {
  background: linear-gradient(
    to right,
    rgba(44, 41, 37, 0.05) 0%,
    rgba(44, 41, 37, 0.5) 50%,
    rgba(44, 41, 37, 0.95) 100%
  );
}

.panel__overlay--2 {
  background: linear-gradient(
    to left,
    rgba(44, 41, 37, 0.05) 0%,
    rgba(44, 41, 37, 0.5) 50%,
    rgba(44, 41, 37, 0.95) 100%
  );
}

/* Contenu */
.panel__content {
  position: relative;
  height: 100%;
  padding: clamp(48px, 6vw, 72px) clamp(32px, 5vw, 60px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #2c2925;
}

/* Reveal */
.reveal-wrap {
  overflow: hidden;
  margin-bottom: 12px;
}

.reveal-line {
  display: block;
}

/* Tags */
.panel__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 28px;
}

.tag {
  padding: 5px 11px;
  border: 0.5px solid rgba(var(--c-main), 0.35);
  border-radius: 1px;
  font-family: 'Cinzel', serif;
  font-size: clamp(10px, 1vw, 12px);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(var(--c-main), 0.8);
}

/* CTA */
.panel__cta {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 24px;
  border: 0.5px solid rgba(var(--c-main), 0.6);
  background: transparent;
  color: rgba(var(--c-main), 1);
  font-family: sans-serif;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: gap 0.22s ease, background 0.22s ease;
}

.panel__cta:hover {
  gap: 18px;
  background: rgba(var(--c-main), 0.06);
}

.cta-arrow {
  display: inline-block;
  transition: transform 0.22s ease;
}

.panel__cta:hover .cta-arrow {
  transform: translateX(4px);
}

/* Couleurs panels */
.p1 {
  --c-main: 196, 169, 106;
  --c-title: #e8d49a;
  --c-desc: 240, 233, 216;
}

.p2 {
  --c-main: 196, 140, 80;
  --c-title: #e8c49a;
  --c-desc: 240, 220, 200;
}

.p3 {
  --c-main: 138, 184, 122;
  --c-title: #c8e0b8;
  --c-desc: 200, 224, 184;
}