/* ═══════════════════════════════════════════════════════════
   SIRKAPROD — CSS COMMUN PAGES CATÉGORIES
   Partagé par : mariage, immobilier, sport, business,
                 court-metrage, youtube
   ══════════════════════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --bg-deep:    #1e2a32;
  --bg-mid:     #2e4050;
  --bg-warm:    #3d3028;
  --glow-warm:  #c8845a;
  --glow-cream: #dfd3c0;
  --glow-cold:  #6a8898;
  --slate:      #4a6070;
  --text:       #f0ede8;
  --text2:      #9aa5aa;
  --gold:       #c8b89a;
  --gold-d:     #7a6848;
  --border:     rgba(210,195,175,0.12);
  --nav-h:      90px;
}

/* ── Reset & base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { overflow-x: hidden; scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg-deep);
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
}

/* Forcer curseur invisible sur TOUS les éléments — évite le curseur OS qui réapparaît */
@media (hover: hover) {
  *, *::before, *::after { cursor: none !important; }
}
@media (hover: none) {
  body { cursor: auto; }
  *, *::before, *::after { cursor: auto !important; }
}

img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }

/* ── Curseur custom — flèche + halo ── */
.cur-trail { display: none; }
#cur-dot {
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  width: 18px; height: 22px;
  transform: translate(-1px, -1px);
}
#cur-dot svg { width: 100%; height: 100%; display: block; }
#cur-ring {
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,184,154,0.12) 0%, rgba(200,184,154,0.03) 55%, transparent 100%);
  transform: translate(-50%, -50%);
  animation: haloPulse 3.5s ease-in-out infinite;
}
@keyframes haloPulse {
  0%, 100% { opacity: 0.75; }
  50%       { opacity: 0.18; }
}
@media (hover: none) {
  #cur-dot  { display: none; }
  #cur-ring { display: none; }
}

/* ── Utilitaires typographie ── */
.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 9.5px; font-weight: 500;
  letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px; display: block;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 5.5vw, 62px); font-weight: 300;
  line-height: 1.1; color: var(--text); margin-bottom: 20px;
}
.section-sep { border: none; height: 1px; background: var(--border); margin: 36px 0; }
.body-text   { font-size: 14.5px; font-weight: 300; line-height: 1.9; color: var(--text2); max-width: 700px; }

/* ── Container ── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 48px; }
@media (max-width: 768px) { .container { padding: 0 24px; } }

/* ── Boutons ── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'DM Sans', sans-serif; font-size: 10.5px;
  font-weight: 400; letter-spacing: 0.26em; text-transform: uppercase;
  padding: 15px 34px; border-radius: 2px; transition: all 0.4s ease;
}
.btn-solid   { background: var(--gold); color: var(--bg-deep); border: 1px solid var(--gold); }
.btn-solid:hover { background: var(--glow-cream); border-color: var(--glow-cream); }
.btn-outline { border: 1px solid rgba(200,184,154,0.45); color: var(--gold); }
.btn-outline:hover { background: rgba(200,184,154,0.08); border-color: var(--gold); }

/* ══════════════════════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════════════════════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h); z-index: 1000;
  display: flex; align-items: center; padding: 0 48px;
  transition: height 0.35s ease, background 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
#navbar.scrolled {
  height: 64px;
  background: rgba(30,42,50,0.90);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border-bottom-color: var(--border);
}
.nav-brand { display: flex; align-items: center; gap: 12px; margin-right: auto; }
.nav-logo  { height: 76px; width: auto; mix-blend-mode: screen; transition: transform 0.35s ease; }
#navbar.scrolled .nav-logo { transform: scale(0.88); }
.nav-wordmark {
  font-family: 'Cormorant Garamond', serif; font-size: 20px;
  font-weight: 300; letter-spacing: 0.25em; color: var(--text); text-transform: uppercase;
}
.wm-prod { color: var(--gold); }

/* ── Bouton menu hamburger ── */
#menu-btn {
  display: flex; flex-direction: column; justify-content: center; gap: 6px;
  background: none; border: 1px solid var(--border); border-radius: 2px;
  cursor: pointer; padding: 10px 12px; margin-left: 20px; flex-shrink: 0;
  transition: border-color 0.3s ease;
}
#menu-btn:hover { border-color: rgba(200,184,154,0.45); }
#menu-btn span {
  display: block; height: 1px; background: var(--text);
  transition: width 0.35s ease, transform 0.35s cubic-bezier(0.34,1.56,0.64,1), opacity 0.25s ease, background 0.3s ease;
  transform-origin: center center;
}
#menu-btn span:nth-child(1) { width: 22px; }
#menu-btn span:nth-child(2) { width: 14px; }
#menu-btn span:nth-child(3) { width: 18px; }
#menu-btn:hover span { width: 22px; background: var(--gold); }
#menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); width: 22px; background: var(--gold); }
#menu-btn.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
#menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); width: 22px; background: var(--gold); }

@media (max-width: 768px) {
  #navbar { padding: 0 24px; }
}

/* ══════════════════════════════════════════════════════
   MENU PLEIN ÉCRAN — sous-pages
   ══════════════════════════════════════════════════════ */
#main-menu {
  position: fixed; inset: 0; z-index: 9980;
  display: grid; grid-template-rows: auto 1fr auto;
  visibility: hidden; pointer-events: none;
}
#main-menu-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 70% at 85% 10%,  rgba(200,130,90,0.18)  0%, transparent 55%),
    radial-gradient(ellipse 50% 60% at 10% 80%,  rgba(74,96,112,0.22)   0%, transparent 55%),
    linear-gradient(160deg, #161f26 0%, #1e2a32 50%, #141d24 100%);
  clip-path: inset(0 0 100% 0);
}
#main-menu-header {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 56px; height: 80px;
  border-bottom: 1px solid var(--border); opacity: 0;
}
.menu-brand { font-family: 'Cormorant Garamond', serif; font-size: 17px; font-weight: 300; letter-spacing: 0.28em; text-transform: uppercase; color: var(--text); text-decoration: none; transition: color 0.3s ease; }
.menu-brand:hover { color: var(--gold); }
.menu-brand .wm-prod { color: var(--gold); }
#menu-close { background: none; border: 1px solid var(--border); border-radius: 2px; color: var(--text2); font-size: 14px; cursor: pointer; padding: 8px 14px; transition: all 0.3s ease; font-family: 'DM Sans', sans-serif; letter-spacing: 0.1em; }
#menu-close:hover { border-color: var(--gold); color: var(--gold); }
#main-menu-body { position: relative; z-index: 2; display: flex; align-items: center; padding: 0 56px; }
.menu-nav { width: 100%; }
.menu-link {
  display: flex; align-items: baseline; gap: 24px;
  padding: 18px 0; border-bottom: 1px solid rgba(200,184,154,0.07);
  cursor: pointer; text-decoration: none; color: inherit;
  position: relative; overflow: hidden; opacity: 0; transform: translateY(30px);
}
.menu-link::before {
  content: ''; position: absolute; bottom: 0; left: 0;
  height: 1px; width: 100%;
  background: linear-gradient(to right, var(--gold), transparent);
  transform: scaleX(0); transform-origin: left; transition: transform 0.5s ease;
}
.menu-link:hover::before { transform: scaleX(1); }
.menu-link-num { font-family: 'DM Sans', sans-serif; font-size: 9px; letter-spacing: 0.32em; color: var(--gold); opacity: 0.6; flex-shrink: 0; margin-top: 4px; }
.menu-link-text { font-family: 'Cormorant Garamond', serif; font-size: clamp(32px, 4.5vw, 62px); font-weight: 300; letter-spacing: 0.04em; color: var(--text); transition: color 0.3s ease, transform 0.4s ease; line-height: 1; }
.menu-link:hover .menu-link-text { color: var(--gold); transform: translateX(8px); }
.menu-link-arrow { margin-left: auto; font-size: 16px; color: var(--gold); opacity: 0; transform: translateX(-8px); transition: opacity 0.3s ease, transform 0.3s ease; }
.menu-link:hover .menu-link-arrow { opacity: 1; transform: translateX(0); }
.menu-sub {
  padding: 12px 0 20px 68px; display: grid;
  grid-template-columns: repeat(3, auto); gap: 10px 32px;
  width: fit-content; opacity: 0; transform: translateY(10px);
}
.menu-sub a { font-family: 'DM Sans', sans-serif; font-size: 10px; font-weight: 400; letter-spacing: 0.30em; text-transform: uppercase; color: var(--text2); text-decoration: none; transition: color 0.3s ease; padding: 4px 0; position: relative; }
.menu-sub a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px; background: var(--gold); transition: width 0.3s ease; }
.menu-sub a:hover { color: var(--gold); }
.menu-sub a:hover::after { width: 100%; }
#main-menu-footer {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 56px; border-top: 1px solid var(--border); opacity: 0;
}
.menu-footer-links { display: flex; gap: 28px; }
.menu-footer-links a { font-family: 'DM Sans', sans-serif; font-size: 9.5px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--text2); text-decoration: none; transition: color 0.3s ease; }
.menu-footer-links a:hover { color: var(--gold); }
.menu-footer-copy { font-family: 'DM Sans', sans-serif; font-size: 9px; letter-spacing: 0.20em; color: rgba(154,165,170,0.4); }
@media (max-width: 768px) {
  #main-menu-header, #main-menu-body, #main-menu-footer { padding: 0 24px; }
  #main-menu-header { height: 68px; }
  .menu-sub { grid-template-columns: repeat(2, auto); gap: 8px 24px; padding-left: 40px; }
}

/* ══════════════════════════════════════════════════════
   HERO PAGE CATÉGORIE
   ══════════════════════════════════════════════════════ */
.page-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}
.page-hero-content {
  position: relative;
  z-index: 10;
  padding: calc(var(--nav-h) + 60px) 48px 80px;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
}
.page-hero-label {
  font-family: 'DM Sans', sans-serif; font-size: 9.5px;
  font-weight: 500; letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px; display: block;
}
.page-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 9vw, 130px); font-weight: 300;
  letter-spacing: 0.12em; line-height: 0.95;
  color: var(--text); text-transform: uppercase;
  margin-bottom: 28px;
}
.page-hero-accroche {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px, 2.5vw, 28px); font-weight: 300; font-style: italic;
  color: var(--glow-cream); margin-bottom: 0; padding-bottom: 36px;
  position: relative;
}
.page-hero-accroche::after {
  content: '';
  position: absolute;
  bottom: 12px; left: 50%;
  transform: translateX(-50%);
  width: 38px; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-d) 50%, transparent);
}
.page-hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Fondu bas du hero → fond page (supprime la délimitation visible) */
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to bottom, transparent 0%, var(--bg-deep) 100%);
  pointer-events: none;
  z-index: 5;
}

/* Grille perspective hero */
.page-hero-grid {
  position: absolute; inset: 0; pointer-events: none; z-index: 1; opacity: 0.018;
  background-image: linear-gradient(rgba(200,184,154,0.9) 1px, transparent 1px), linear-gradient(90deg, rgba(200,184,154,0.9) 1px, transparent 1px);
  background-size: 64px 64px;
  transform: perspective(900px) rotateX(28deg) translateY(-8%) scale(1.1);
  transform-origin: top center;
}

/* ══════════════════════════════════════════════════════
   SECTION DESCRIPTION
   ══════════════════════════════════════════════════════ */
.page-desc {
  padding: 100px 0;
  background:
    radial-gradient(ellipse 50% 70% at 5%  50%, rgba(200,130,90,0.18) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 95% 30%, rgba(74,96,112,0.25) 0%, transparent 60%),
    linear-gradient(170deg, #243040 0%, #1e2a32 100%);
  position: relative;
}
.page-desc::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 120px; background: linear-gradient(to bottom, #1e2a32, transparent);
  pointer-events: none;
}
.page-desc-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.page-desc-text .section-title { margin-bottom: 16px; }
.page-desc-text .body-text { margin-bottom: 32px; }

/* Embed vidéo YouTube */
.video-embed-wrap {
  position: relative; aspect-ratio: 16/9;
  border-radius: 3px; overflow: hidden;
  background: linear-gradient(135deg, #243040, #1e2832);
}
.video-embed-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.video-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px;
  background:
    radial-gradient(ellipse 60% 60% at 50% 40%, rgba(200,130,90,0.25) 0%, transparent 65%),
    linear-gradient(160deg, #243040, #1e2832);
}
.video-placeholder-icon { font-size: 48px; opacity: 0.5; }
.video-placeholder-text { font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--text2); }

@media (max-width: 900px) {
  .page-desc-inner { grid-template-columns: 1fr; gap: 48px; }
}

/* ══════════════════════════════════════════════════════
   GALERIE MASONRY
   ══════════════════════════════════════════════════════ */
.page-gallery {
  padding: 100px 0;
  background:
    radial-gradient(ellipse 60% 50% at 90% 50%, rgba(106,136,152,0.20) 0%, transparent 60%),
    radial-gradient(ellipse 70% 40% at 10% 30%, rgba(61,48,40,0.35) 0%, transparent 55%),
    linear-gradient(160deg, #1e2832 0%, #2a3540 100%);
  position: relative;
}
.page-gallery::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 120px; background: linear-gradient(to bottom, #1e2a32, transparent);
  pointer-events: none;
}
.gallery-header { margin-bottom: 56px; }

/* Colonnes masonry CSS */
.masonry-grid {
  columns: 3;
  column-gap: 14px;
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: 14px;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}
/* Hover effects + GPU promotion uniquement sur desktop (évite GPU-memory leak mobile) */
@media (hover: hover) {
  .masonry-item:hover {
    will-change: transform;
    transform: scale(1.02) translateY(-2px);
    box-shadow: 0 20px 56px rgba(0,0,0,0.55), 0 0 30px rgba(200,184,154,0.06);
  }
}
/* Touch : tap ripple léger sans scale */
@media (hover: none) {
  .masonry-item:active {
    opacity: 0.85;
    transition: opacity 0.15s ease;
  }
}
.masonry-item img {
  width: 100%; display: block;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.masonry-item img.loaded { opacity: 1; }

/* Placeholder legacy (conservé pour compatibilité) */
.masonry-ph {
  width: 100%;
  aspect-ratio: var(--ph-ratio, 2/3);
}

/* ── Photo Slot — conteneur universel image + placeholder ──
   Affiche le dégradé de fond jusqu'à ce que l'image soit
   placée dans assets/. Dès que l'image charge, elle
   apparaît en fondu par-dessus le gradient.
   ───────────────────────────────────────────────────────── */
.photo-slot {
  position: relative;
  width: 100%;
  aspect-ratio: var(--slot-ratio, 4/3);
  overflow: hidden;
  border-radius: 6px;
  background: var(--slot-bg, linear-gradient(160deg, #1e2a32, #2e3840));
}
.photo-slot img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
  display: block;
}
.photo-slot img.loaded {
  opacity: 1;
}
/* Label de slot : visible tant que la photo n'est pas là */
.slot-label {
  position: absolute; bottom: 10px; left: 12px;
  font-family: 'DM Sans', sans-serif; font-size: 8px;
  letter-spacing: 0.20em; text-transform: uppercase;
  color: rgba(240,237,232,0.22); pointer-events: none;
  transition: opacity 0.4s ease;
}
.photo-slot img.loaded ~ .slot-label { opacity: 0; }

/* Tag catégorie (Best Shots) */
.item-cat {
  position: absolute; bottom: 10px; left: 12px;
  font-family: 'DM Sans', sans-serif; font-size: 8px;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(240,237,232,0.75);
  background: rgba(20,28,34,0.55);
  backdrop-filter: blur(6px);
  padding: 5px 10px; border-radius: 2px;
  pointer-events: none;
}

@media (max-width: 900px) { .masonry-grid { columns: 2; } }
@media (max-width: 560px) { .masonry-grid { columns: 1; } }

/* ══════════════════════════════════════════════════════
   LIGHTBOX
   ══════════════════════════════════════════════════════ */
#lightbox {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(20,28,34,0.95);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
#lightbox.active { opacity: 1; pointer-events: all; }
#lightbox img {
  max-width: 90vw; max-height: 90vh;
  object-fit: contain; border-radius: 2px;
  transform: scale(0.95); transition: transform 0.3s ease;
}
#lightbox.active img { transform: scale(1); }
#lb-close {
  position: absolute; top: 24px; right: 24px;
  background: none; border: none; cursor: pointer;
  color: var(--text); font-size: 28px; line-height: 1;
  transition: color 0.3s; z-index: 1;
}
#lb-close:hover { color: var(--gold); }
.lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: none; border: 1px solid var(--border); color: var(--gold);
  width: 48px; height: 48px; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center; font-size: 16px;
  transition: all 0.3s ease;
}
.lb-nav:hover { border-color: var(--gold); background: rgba(200,184,154,0.08); }
#lb-prev { left: 24px; }
#lb-next { right: 24px; }

/* ══════════════════════════════════════════════════════
   CTA CONTACT
   ══════════════════════════════════════════════════════ */
.page-cta {
  padding: 100px 0;
  text-align: center;
  background:
    radial-gradient(ellipse 60% 80% at 30% 100%, rgba(200,130,90,0.20) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 10%,  rgba(106,136,152,0.18) 0%, transparent 55%),
    linear-gradient(160deg, #1e2832 0%, #243040 100%);
  position: relative;
}
.page-cta::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 100px; background: linear-gradient(to bottom, #1e2a32, transparent);
  pointer-events: none;
}
.page-cta-inner { position: relative; z-index: 1; }
.page-cta .section-title { margin-bottom: 12px; }
.page-cta .body-text { margin: 0 auto 40px; text-align: center; }
.page-cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ══════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════ */
footer {
  padding: 56px 0 38px;
  background: linear-gradient(180deg, #1e2832 0%, #1a2330 100%);
  position: relative;
}
footer::before {
  content: ''; position: absolute; top: 0; left: 48px; right: 48px; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-d) 50%, transparent);
}
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-logo  { height: 28px; mix-blend-mode: screen; }
.footer-wordmark { font-family: 'Cormorant Garamond', serif; font-size: 15px; font-weight: 300; letter-spacing: 0.22em; color: var(--text); text-transform: uppercase; }
.footer-copy  { font-family: 'DM Sans', sans-serif; font-size: 10.5px; letter-spacing: 0.16em; color: var(--text2); text-align: center; }
.footer-links { display: flex; gap: 22px; align-items: center; }
.footer-links a { font-family: 'DM Sans', sans-serif; font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text2); transition: color 0.3s; }
.footer-links a:hover { color: var(--gold); }

@media (max-width: 768px) {
  .footer-inner  { flex-direction: column; align-items: center; text-align: center; }
  footer::before { left: 24px; right: 24px; }
  .page-hero-content { padding-left: 24px; padding-right: 24px; }
}

/* ══════════════════════════════════════════════════════
   VIDÉO CARDS — partagé par toutes les pages catégories
   ══════════════════════════════════════════════════════ */
.video-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: #0e1820;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.video-card.visible { opacity: 1; transform: translateY(0); }
.video-card video   { display: block; width: 100%; height: 100%; object-fit: cover; }
.video-card.portrait  { aspect-ratio: 9/16; }
.video-card.landscape { aspect-ratio: 16/9; }
.video-card.square    { aspect-ratio: 1/1; }

/* Bouton son — icône SVG */
.video-sound-btn {
  position: absolute;
  bottom: 12px; right: 12px;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(200,184,154,0.35);
  background: rgba(14,24,32,0.72);
  backdrop-filter: blur(8px);
  color: var(--gold, #c8b89a);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s, border-color 0.25s, transform 0.2s;
  z-index: 2;
}
.video-sound-btn:hover {
  background: rgba(200,184,154,0.18);
  border-color: var(--gold, #c8b89a);
  transform: scale(1.1);
}
.video-sound-btn svg { width: 14px; height: 14px; display: block; }

/* Étiquette vidéo (overlay bas gauche) */
.video-card-label {
  position: absolute;
  bottom: 12px; left: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 8px; letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(240,237,232,0.60);
  background: rgba(14,24,32,0.52);
  backdrop-filter: blur(6px);
  padding: 4px 9px; border-radius: 2px;
  pointer-events: none;
}

/* ── Embed YouTube dans page-desc ── */
.yt-embed-wrap {
  position: relative; width: 100%; aspect-ratio: 16/9;
  border-radius: 10px; overflow: hidden; background: #0e1820;
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.yt-embed-wrap.visible { opacity: 1; transform: translateY(0); }
.yt-embed-wrap iframe  { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.yt-cover {
  position: absolute; inset: 0;
  background: linear-gradient(155deg, #1e2a32, #2a1822);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: opacity 0.4s ease;
}
.yt-cover.hidden { opacity: 0; pointer-events: none; }
.yt-play-btn {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(200,184,154,0.12);
  border: 1.5px solid rgba(200,184,154,0.45);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s, transform 0.2s;
}
.yt-cover:hover .yt-play-btn { background: rgba(200,184,154,0.26); transform: scale(1.08); }
.yt-play-btn svg { width: 22px; height: 22px; fill: var(--gold, #c8b89a); margin-left: 3px; }

/* ══════════════════════════════════════════════════════
   POLISH FINAL — v2 avant hébergement
   ══════════════════════════════════════════════════════ */

/* ── Scrollbar premium ── */
::-webkit-scrollbar               { width: 3px; }
::-webkit-scrollbar-track         { background: #131c23; }
::-webkit-scrollbar-thumb         { background: var(--gold-d); border-radius: 2px; }
::-webkit-scrollbar-thumb:hover   { background: var(--gold); }
html { scrollbar-width: thin; scrollbar-color: var(--gold-d) #131c23; }

/* ── Entrée page en fondu doux ── */
@keyframes pageFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
body { animation: pageFadeIn 0.55s ease forwards; }

/* ── Séparateur horizontal → gradient doré ── */
.section-sep {
  background: linear-gradient(to right, var(--gold-d) 0%, transparent 65%);
}

/* ── Boutons : micro-lift + lueur au survol ── */
.btn { transition: all 0.35s ease; }
.btn-solid:hover {
  background: var(--glow-cream);
  border-color: var(--glow-cream);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(200,184,154,0.22);
}
.btn-outline:hover { transform: translateY(-2px); }

/* ── Galerie masonry : espacement + border-radius affiné ── */
.masonry-grid  { column-gap: 16px; }
.masonry-item  { margin-bottom: 16px; border-radius: 8px; }
.photo-slot    { border-radius: 8px; }

/* ── Hover masonry : contour doré subtil + zoom image ── */
@media (hover: hover) {
  .masonry-item:hover {
    will-change: transform;
    transform: scale(1.02) translateY(-2px);
    box-shadow:
      0 20px 56px rgba(0,0,0,0.55),
      0 0 0 1px rgba(200,184,154,0.12),
      0 0 30px rgba(200,184,154,0.06);
  }
  .masonry-item:hover .photo-slot img {
    transform: scale(1.04);
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.5s ease;
  }
}

/* ── Video card : transition étendue + vignette bas + hover lift ── */
.video-card {
  transition: opacity 0.6s ease, transform 0.45s ease, box-shadow 0.45s ease;
}
.video-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(8,14,20,0.62) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
  border-radius: 0 0 10px 10px;
}
.video-sound-btn  { z-index: 3; }
.video-card-label { z-index: 3; }

@media (hover: hover) {
  .video-card:hover {
    transform: scale(1.015) translateY(-3px);
    box-shadow:
      0 20px 48px rgba(0,0,0,0.50),
      0 0 0 1px rgba(200,184,154,0.10);
  }
}

/* ── YouTube : pulsation du bouton play ── */
@keyframes ytPulse {
  0%, 100% { box-shadow: 0 0 0 0   rgba(200,184,154,0.30); }
  60%       { box-shadow: 0 0 0 16px rgba(200,184,154,0);    }
}
.yt-play-btn { animation: ytPulse 2.8s ease-in-out infinite; }

/* ── Responsive mobile : réduction du padding section-desc ── */
@media (max-width: 768px) {
  .page-desc    { padding: 72px 0; }
  .page-gallery { padding: 72px 0; }
  .page-cta     { padding: 72px 0; }
}
