/* ============================================================
   HERO — Section principale d'accroche
   ============================================================ */

.hero {
  margin-top: 80px;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(196, 149, 42, 0.1) 0%, transparent 65%);
  pointer-events: none;
  z-index: 1;
}

/* En-tête hero */
.hero-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 88px 52px 60px;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--gold);
  display: block;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 7.5vw, 96px);
  font-weight: 300;
  line-height: 1;
  color: var(--cream);
  margin-bottom: 10px;
}

.hero-title em {
  font-style: italic;
  color: var(--gold2);
}

.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px, 2.2vw, 24px);
  font-style: italic;
  font-weight: 300;
  color: rgba(250, 247, 242, 0.80);
  margin-bottom: 28px;
}

.hero-desc {
  font-size: 15px;
  letter-spacing: 0.3px;
  color: rgba(250, 247, 242, 0.75);
  line-height: 1.9;
  max-width: 500px;
  margin-bottom: 40px;
}

/* Statistiques */
.hero-stats {
  display: flex;
  gap: 52px;
  justify-content: center;
}

.hero-stat-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  color: var(--gold2);
  font-weight: 600;
  line-height: 1;
  text-align: center;
}

.hero-stat-lbl {
  font-size: 11px;
  color: rgba(250, 247, 242, 0.72);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 4px;
  text-align: center;
}

/* ── Galerie hero — 4 photos côte à côte ── */
.hero-photos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.hero-photo-main,
.hero-photo-sm {
  overflow: hidden;
  cursor: pointer;
  position: relative;
  aspect-ratio: 3 / 4;              /* format portrait — montre plus de chaque intérieur */
  border-radius: 3px;
}

/* Overlay sombre au survol */
.hero-photo-main::after,
.hero-photo-sm::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(28, 24, 18, 0);
  transition: background 0.45s ease;
  pointer-events: none;
}

.hero-photo-main:hover::after,
.hero-photo-sm:hover::after {
  background: rgba(28, 24, 18, 0.12);
}

.hero-photo-main img,
.hero-photo-sm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              filter 0.7s ease;
}

/* Zoom doux + légère luminosité au survol */
.hero-photo-main:hover img,
.hero-photo-sm:hover img {
  transform: scale(1.04);
  filter: brightness(1.06);
}

/* ── Tablette — 2 colonnes ── */
@media (max-width: 960px) {
  .hero {
    margin-top: 53px;
  }

  .hero-header {
    padding: 60px 24px 40px;
  }

  .hero-photos {
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
  }
}

/* ── Mobile — slider pleine largeur ── */
@media (max-width: 600px) {
  .hero {
    overflow: hidden;
    margin-top: 45px;
  }

  .hero-header {
    padding: 44px 20px 32px;
  }

  .hero-photos {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    height: 260px;
    gap: 0;
    width: 100%;
    border-radius: 0;
  }

  .hero-photos::-webkit-scrollbar {
    display: none;
  }

  .hero-photo-main,
  .hero-photo-sm {
    flex: 0 0 100%;
    height: 260px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    min-height: unset;
    border-radius: 0;
  }
}
