

.gh {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #0A0A0A;
}

.gh__mosaic {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(2, 1fr);
  opacity: 0.5;
}

.gh__mosaic span {
  background-size: cover;
  background-position: center;
  filter: grayscale(0.25);
}

.gh__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(75% 75% at 88% 12%, rgba(255, 213, 31, 0.18) 0%, transparent 58%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.74) 0%, rgba(10, 10, 10, 0.88) 55%, #0A0A0A 100%);
}

.gh__inner {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 1280px;
  padding: clamp(2.5rem, 6vw, 6.5rem) 0 clamp(2.25rem, 5vw, 3.5rem);
}

.gh__crumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: var(--space-4);
}

.gh__crumb a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.gh__crumb a:hover { color: #fff; }
.gh__crumb svg { width: 13px; height: 13px; flex-shrink: 0; }
.gh__crumb span { color: #fff; }

.gh__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0A0A0A;
  background: var(--jaune, #FFD51F);
  padding: 0.32rem 0.8rem;
  border-radius: 999px;
  margin-bottom: var(--space-4);
}

.gh__pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #0A0A0A;
  animation: ghPulse 2.2s ease-out infinite;
}

@keyframes ghPulse {
  0%   { box-shadow: 0 0 0 0 rgba(10, 10, 10, 0.4); }
  70%  { box-shadow: 0 0 0 9px rgba(10, 10, 10, 0); }
  100% { box-shadow: 0 0 0 0 rgba(10, 10, 10, 0); }
}

.gh__title {
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 var(--space-3);
}

.gh__title em {
  font-style: normal;
  color: var(--jaune, #FFD51F);
}

.gh__lead {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  max-width: 560px;
  margin-bottom: var(--space-6);
}

.gh__stats {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-5);
}

.gh__stat {
  display: flex;
  flex-direction: column;
}

.gh__stat strong {
  font-size: clamp(1.7rem, 3vw, 2.25rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #fff;
}

.gh__stat strong i {
  font-style: normal;
  color: var(--jaune, #FFD51F);
}

.gh__stat span {
  margin-top: 5px;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
}

.gh__sep {
  width: 1px;
  height: 38px;
  background: rgba(255, 255, 255, 0.16);
}

.gallery {
  padding: var(--space-8) 0 var(--space-6);
}

.gallery__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.gallery__head-title {
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  color: var(--gris-900);
}

.gallery__head-sub {
  margin-top: 3px;
  font-size: 0.9rem;
  color: var(--gris-500);
}

.gallery__head-count {
  flex: none;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--noir, #0A0A0A);
  background: var(--jaune, #FFD51F);
  padding: 0.42rem 0.95rem;
  border-radius: var(--radius-full);
}

.gallery__grid {
  column-count: 2;
  column-gap: var(--space-3);
}

.gallery__item {
  break-inside: avoid;
  margin-bottom: var(--space-3);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background: var(--gris-100);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease, box-shadow 0.3s ease;
}

.gallery__item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.gallery__item.is-hidden {
  display: none;
}

.gallery__item:hover {
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.gallery__item img {
  width: 100%;
  display: block;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery__item:hover img {
  transform: scale(1.07);
}

.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.45) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.gallery__item:hover::after { opacity: 1; }

.gallery__item::before {
  content: '';
  position: absolute;
  bottom: var(--space-3);
  right: var(--space-3);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--jaune, #FFD51F);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%230A0A0A' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3Cline x1='11' y1='8' x2='11' y2='14'/%3E%3Cline x1='8' y1='11' x2='14' y2='11'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.gallery__item:hover::before {
  opacity: 1;
  transform: scale(1);
}

.gallery__load-more {
  text-align: center;
  padding: var(--space-7) 0 var(--space-2);
}

.gallery__load-more.is-hidden { display: none; }

.gallery__load-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  background: var(--noir, #0A0A0A);
  border: 1.5px solid var(--noir, #0A0A0A);
  border-radius: var(--radius-full);
  font-size: 0.9375rem;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.gallery__load-btn:hover {
  background: #1c1c1c;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  transform: translateY(-1px);
}

.gallery__load-btn svg {
  width: 18px;
  height: 18px;
  transition: transform var(--transition-fast);
}

.gallery__load-btn:hover svg { transform: translateY(2px); }

.gallery__load-count {
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
}

.gallery-cta {
  background: var(--jaune, #FFD51F);
  padding: clamp(2.25rem, 5vw, 3.5rem) 0;
}

.gallery-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
  flex-wrap: wrap;
}

.gallery-cta__title {
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  letter-spacing: -0.02em;
  color: var(--noir, #0A0A0A);
}

.gallery-cta__desc {
  margin-top: 0.45rem;
  color: rgba(10, 10, 10, 0.72);
  max-width: 440px;
  line-height: 1.55;
}

.gallery-cta__actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.gallery-cta .btn--primary {
  background: var(--noir, #0A0A0A);
  border-color: var(--noir, #0A0A0A);
  color: #fff;
}

.gallery-cta .btn--primary:hover {
  background: #1c1c1c;
  border-color: #1c1c1c;
}

.gallery-cta__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: var(--noir, #0A0A0A);
  text-decoration: none;
  transition: opacity var(--transition-fast);
}

.gallery-cta__phone:hover { opacity: 0.7; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  background: rgba(0, 0, 0, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox__image {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  transition: opacity 0.25s ease;
}

.lightbox__image.is-loading { opacity: 0.3; }

.lightbox__close {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.lightbox__close:hover {
  background: var(--jaune, #FFD51F);
  color: var(--noir, #0A0A0A);
  transform: scale(1.05);
}

.lightbox__close svg { width: 22px; height: 22px; }

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.lightbox__nav:hover {
  background: var(--jaune, #FFD51F);
  color: var(--noir, #0A0A0A);
  transform: translateY(-50%) scale(1.05);
}

.lightbox__nav svg { width: 24px; height: 24px; }
.lightbox__prev { left: var(--space-4); }
.lightbox__next { right: var(--space-4); }

.lightbox__counter {
  position: absolute;
  bottom: var(--space-4);
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8125rem;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

@media (max-width: 767px) {
  .gh__mosaic { grid-template-columns: repeat(4, 1fr); }
  .gallery__head { flex-direction: column; align-items: flex-start; }
  .gallery-cta__inner { flex-direction: column; align-items: flex-start; text-align: left; }
}

@media (min-width: 768px) {
  .gallery__grid {
    column-count: 3;
    column-gap: var(--space-4);
  }
  .gallery__item { margin-bottom: var(--space-4); }
}

@media (min-width: 1024px) {
  .gallery__grid {
    column-count: 4;
    column-gap: var(--space-4);
  }

  .gallery-cta__inner {
    max-width: none;
    margin: 0;
    padding-left: min(340px, 24vw);
    padding-right: var(--space-6);
  }
}

@media (min-width: 1280px) {
  .gallery__grid { column-gap: var(--space-5); }
  .gallery__item { margin-bottom: var(--space-5); }
}
