/* ═══════════════════════════════════════════════════════
   MASK PROD Studio — index.css
   Font: Cormorant Garamond (display) + Syne (body)
   Layout: Centered 1380px max-width
═══════════════════════════════════════════════════════ */

:root {
  --bg-primary: #080808;
  --bg-secondary: #0c0c0c;
  --gold: #C9A84C;
  --gold-light: #E8C96D;
  --amber: #F5A623;
  --cream: #F2EDE4;
  --cream-muted: rgba(242,237,228,0.55);
  --glass-bg: rgba(255,255,255,0.04);
  --glass-bg-hover: rgba(255,255,255,0.08);
  --border-glass: rgba(201,168,76,0.18);
  --border-glass-strong: rgba(201,168,76,0.4);
  --site-width: 1380px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background-color: #040404;
  color: var(--cream);
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  cursor: none;
  overflow-x: hidden;
}


/* ── Custom cursor ───────────────────────────────── */
.cursor {
  position: fixed;
  width: 12px;
  height: 12px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, background 0.3s;
}
.cursor-follower {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(201,168,76,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: all 0.15s ease;
}

/* ── Glassmorphism ────────────────────────────────── */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.glass:hover {
  background: var(--glass-bg-hover);
  border-color: var(--border-glass-strong);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 50px rgba(201,168,76,0.06);
  transform: translateY(-6px);
}

/* ── Typography ──────────────────────────────────── */
.text-gold-gradient {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--amber) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-tag {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.section-tag::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.display-title {
  font-family: 'Playfair Display', serif;
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -1px;
  color: var(--cream);
}

/* ── Buttons ─────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  color: #080808;
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: none;
  text-decoration: none;
  border: none;
}
.btn-primary:hover {
  transform: scale(1.04) translateY(-2px);
  box-shadow: 0 12px 40px rgba(201,168,76,0.4);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 38px;
  background: transparent;
  color: var(--gold);
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 4px;
  border: 1px solid var(--border-glass-strong);
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: none;
  text-decoration: none;
}
.btn-ghost:hover {
  background: rgba(201,168,76,0.1);
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* ── Fade animations ────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1), transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }
.fade-up.delay-5 { transition-delay: 0.5s; }

/* ── Moroccan Motif ─────────────────────────────── */
.moroccan-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 24px 0;
  opacity: 0.5;
}
.moroccan-divider::before,
.moroccan-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-glass-strong));
}
.moroccan-divider::after {
  background: linear-gradient(90deg, var(--border-glass-strong), transparent);
}
.moroccan-star {
  color: var(--gold);
  opacity: 0.6;
  flex-shrink: 0;
}

/* Pattern africain en fond subtil sur sections alternées */
.moroccan-pattern-bg {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cpath d='M40%2C12 L44.96%2C27.99 L59.8%2C20.2 L52.01%2C35.04 L68%2C40 L52.01%2C44.96 L59.8%2C59.8 L44.96%2C52.01 L40%2C68 L35.04%2C52.01 L20.2%2C59.8 L27.99%2C44.96 L12%2C40 L27.99%2C35.04 L20.2%2C20.2 L35.04%2C27.99 Z' fill='none' stroke='%23C9A84C' stroke-width='0.6' opacity='0.1'%2F%3E%3Ccircle cx='40' cy='40' r='7' fill='none' stroke='%23C9A84C' stroke-width='0.4' opacity='0.1'%2F%3E%3C%2Fsvg%3E");
  background-repeat: repeat;
  background-size: 80px 80px;
}

/* Décor coins masque africain sur glass cards */
.glass-card-decorated {
  position: relative;
}
.glass-card-decorated::after {
  content: '';
  position: absolute;
  top: 12px;
  right: 12px;
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2 L13.5 8 L19 5 L16 10.5 L22 12 L16 13.5 L19 19 L13.5 16 L12 22 L10.5 16 L5 19 L8 13.5 L2 12 L8 10.5 L5 5 L10.5 8 Z' fill='none' stroke='%23C9A84C' stroke-width='1' opacity='0.3'%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s;
}
.glass-card-decorated:hover::after { opacity: 1; }

/* ── Navbar ──────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: all 0.4s ease;
}
nav.scrolled {
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glass);
}
.nav-inner {
  max-width: 1260px;
  margin: 0 auto;
  padding: 20px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  transition: padding 0.4s ease;
}
nav.scrolled .nav-inner { padding: 14px 60px; }

/* Brand — logo + tagline */
.nav-brand { display: flex; align-items: center; }
.nav-logo {
  display: block;
  text-decoration: none;
  line-height: 0;
}
.nav-logo img {
  height: 36px;
  width: auto;
  display: block;
}

/* Links */
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--cream-muted);
  text-decoration: none;
  transition: color 0.3s;
  cursor: none;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

/* Actions droite */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  color: #080808;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.23,1,0.32,1);
  cursor: none;
  white-space: nowrap;
}
.btn-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,0.45);
}

/* ── Hero ────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/hero-background-marrakech.jpg');
  background-size: cover;
  background-position: center top;
  transform: scale(1.05);
  transition: transform 0.1s linear;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,8,8,0.85) 0%,
    rgba(8,8,8,0.62) 35%,
    rgba(8,8,8,0.75) 65%,
    rgba(8,8,8,1) 100%
  );
}
.hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(201,168,76,0.06) 0%, transparent 65%);
  pointer-events: none;
}
canvas#particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
/* Layout flex hero — texte gauche | photos droite */
.hero-layout {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  max-width: 1260px;
  margin: 0 auto;
  width: 100%;
  padding: 130px 60px 100px;
}
.hero-content {
  flex: 0 0 auto;
  max-width: 540px;
}
.hero-pretitle {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  opacity: 0;
  animation: fadeSlideDown 1s cubic-bezier(0.23,1,0.32,1) 0.3s forwards;
}
.hero-pretitle::after {
  content: '';
  display: block;
  width: 50px;
  height: 1px;
  background: var(--gold);
  animation: expandWidth 1.2s ease 0.8s both;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 4.8vw, 68px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -1.5px;
  color: var(--cream);
  margin-bottom: 28px;
}
.hero-title .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(60px);
  animation: wordReveal 0.8s cubic-bezier(0.23,1,0.32,1) forwards;
}
.hero-title .word:nth-child(1) { animation-delay: 0.5s; }
.hero-title .word:nth-child(2) { animation-delay: 0.65s; }
.hero-title .word:nth-child(3) { animation-delay: 0.8s; }
.hero-title .word:nth-child(4) { animation-delay: 0.95s; }
.hero-title .word:nth-child(5) { animation-delay: 1.1s; }
.hero-title .word:nth-child(6) { animation-delay: 1.25s; }
.hero-title .break { display: block; height: 8px; }
.hero-subtitle {
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
  color: var(--cream-muted);
  max-width: 460px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeSlideDown 1s cubic-bezier(0.23,1,0.32,1) 1.4s forwards;
}
.hero-ctas {
  display: flex;
  gap: 20px;
  align-items: center;
  opacity: 0;
  animation: fadeSlideDown 1s cubic-bezier(0.23,1,0.32,1) 1.6s forwards;
}

/* ── Hero Photos Pile ────────────────────────────── */
.hero-photos-pile {
  flex: 0 0 auto;
  position: relative;
  width: 380px;
  height: 480px;
  opacity: 0;
  animation: fadeSlideDown 1.2s cubic-bezier(0.23,1,0.32,1) 0.8s forwards;
}
.photo-card {
  position: absolute;
  width: 260px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.7), 0 0 0 1px rgba(201,168,76,0.2);
  transition: transform 0.6s cubic-bezier(0.23,1,0.32,1);
}
.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.9) contrast(1.05) saturate(0.95);
}
.photo-card-1 {
  height: 340px;
  top: 60px;
  left: 0px;
  transform: rotate(-7deg);
  z-index: 1;
}
.photo-card-2 {
  height: 320px;
  top: 20px;
  left: 50px;
  transform: rotate(1deg);
  z-index: 2;
}
.photo-card-3 {
  height: 360px;
  top: 40px;
  left: 95px;
  transform: rotate(6deg);
  z-index: 3;
}
.hero-photos-pile:hover .photo-card-1 { transform: rotate(-10deg) translateY(-10px); }
.hero-photos-pile:hover .photo-card-2 { transform: rotate(0deg) translateY(-6px); }
.hero-photos-pile:hover .photo-card-3 { transform: rotate(8deg) translateY(-4px); }

/* Photo card gold border frame */
.photo-frame {
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 10px;
  pointer-events: none;
  z-index: 4;
}

/* ── Hero stats ──────────────────────────────────── */
.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  border-top: 1px solid var(--border-glass);
  background: rgba(8,8,8,0.6);
  backdrop-filter: blur(20px);
}
.hero-stat {
  flex: 1;
  padding: 28px 40px;
  text-align: center;
  border-right: 1px solid var(--border-glass);
}
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.hero-stat-label {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cream-muted);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 120px;
  right: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fadeSlideDown 1s ease 2s forwards;
  z-index: 10;
}
.scroll-indicator span {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cream-muted);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ── Sections ────────────────────────────────────── */
section { padding: 120px 60px; }
.section-inner { max-width: 1260px; margin: 0 auto; }

/* ── Services ────────────────────────────────────── */
#services { background: var(--bg-secondary); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.services-grid .service-card:nth-child(4) { grid-column: 1; }
.services-grid .service-card:nth-child(5) { grid-column: 2; }
.service-card {
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  margin-bottom: 24px;
  display: block;
  color: var(--gold);
}
.service-icon svg { width: 36px; height: 36px; color: var(--gold); }
.service-tag {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}
.service-title {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 16px;
  line-height: 1.2;
}
.service-desc {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--cream-muted);
  line-height: 1.8;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  transition: gap 0.3s;
  cursor: none;
}
.service-link:hover { gap: 14px; }

/* ── About ───────────────────────────────────────── */
#about { background: var(--bg-primary); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 60px;
}
.about-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.about-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.85) contrast(1.05);
}
.about-image-frame {
  position: absolute;
  inset: 20px;
  border: 1px solid var(--border-glass-strong);
  border-radius: 12px;
  pointer-events: none;
}
.about-quote {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-style: italic;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1.6;
  padding: 28px 0;
  border-top: 1px solid var(--border-glass-strong);
  border-bottom: 1px solid var(--border-glass-strong);
  margin: 32px 0;
}
.about-body {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--cream-muted);
  line-height: 1.9;
  margin-bottom: 20px;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 80px;
}
.value-card { padding: 32px 24px; text-align: center; }
.value-icon {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.value-icon svg { width: 28px; height: 28px; color: var(--gold); }
.value-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 10px;
}
.value-desc {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: var(--cream-muted);
  line-height: 1.7;
}

/* ── Portfolio ───────────────────────────────────── */
#portfolio { background: var(--bg-secondary); }

.portfolio-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 340px 300px;
  gap: 14px;
  margin-top: 60px;
}

/* Placement éditorial */
.pf-1 { grid-column: 1; grid-row: 1 / 3; }   /* Grande gauche — pleine hauteur */
.pf-2 { grid-column: 2; grid-row: 1; }
.pf-3 { grid-column: 3; grid-row: 1; }
.pf-4 { grid-column: 2 / 4; grid-row: 2; }   /* Panoramique bas */
.pf-5 { display: none; }                       /* Réservé */
.pf-6 { display: none; }

.pf-item {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  cursor: none;
}
.pf-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.23,1,0.32,1), filter 0.4s;
  filter: brightness(0.82) contrast(1.06) saturate(0.88);
}
.pf-item:hover img {
  transform: scale(1.07);
  filter: brightness(0.68) contrast(1.1) saturate(0.82);
}

/* Overlay bottom gradient */
.pf-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px 26px;
  background: linear-gradient(
    180deg,
    rgba(8,8,8,0.0) 0%,
    rgba(8,8,8,0.0) 40%,
    rgba(8,8,8,0.72) 100%
  );
  transition: background 0.4s;
}
.pf-item:hover .pf-overlay {
  background: linear-gradient(
    180deg,
    rgba(8,8,8,0.18) 0%,
    rgba(8,8,8,0.0) 30%,
    rgba(8,8,8,0.82) 100%
  );
}

/* Numéro badge — haut droite */
.pf-num {
  align-self: flex-end;
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  font-weight: 400;
  font-style: italic;
  color: rgba(201,168,76,0.70);
  letter-spacing: 1px;
  line-height: 1;
  transform: translateY(-6px);
  opacity: 0;
  transition: opacity 0.4s 0.05s, transform 0.4s;
}
.pf-item:hover .pf-num {
  opacity: 1;
  transform: translateY(0);
}

/* Info bas */
.pf-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
  transform: translateY(12px);
  opacity: 0;
  transition: opacity 0.4s 0.05s, transform 0.4s;
}
.pf-item:hover .pf-info {
  opacity: 1;
  transform: translateY(0);
}
.pf-cat {
  font-family: 'Jost', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
}
.pf-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.25;
  margin: 0;
}

/* Trait gold en bas au hover */
.pf-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 0 0 18px 18px;
  transition: width 0.5s cubic-bezier(0.23,1,0.32,1);
}
.pf-item:hover::after { width: 100%; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.testimonial-card { padding: 36px 32px; }
.testimonial-stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 3px;
  margin-bottom: 20px;
}
.testimonial-text {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-style: italic;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.7;
  margin-bottom: 24px;
}
.testimonial-author {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── Audience ────────────────────────────────────── */
#audience { background: var(--bg-primary); }
.audience-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 60px;
}
.audience-card { padding: 32px 20px; text-align: center; }
.audience-icon {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.audience-icon svg { width: 36px; height: 36px; color: var(--gold); }
.audience-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 10px;
}
.audience-desc {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  color: var(--cream-muted);
  line-height: 1.7;
}

/* ── Contact CTA ─────────────────────────────────── */
#contact { background: var(--bg-secondary); }
.contact-cta-wrap {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  padding: 100px 0 80px;
}
.contact-cta-title {
  font-size: clamp(40px,5vw,64px);
  max-width: 700px;
  margin: 24px auto 28px;
}
.contact-cta-sub {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--cream-muted);
  line-height: 1.8;
  margin-bottom: 44px;
}
.contact-cta-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.promise-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 24px 40px;
  border-radius: 16px;
  border: 1px solid var(--border-glass);
  background: rgba(201,168,76,0.04);
}
.promise-sep {
  width: 1px;
  height: 28px;
  background: var(--border-glass);
  flex-shrink: 0;
}
.promise-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--cream-muted);
  white-space: nowrap;
}
.promise-item svg { color: var(--gold); width: 16px; height: 16px; }

/* ── Portfolio lightbox ──────────────────────────── */
.pf-zoom-hint {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.6);
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(201,168,76,0.18);
  border: 1px solid rgba(201,168,76,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
}
.pf-zoom-hint svg { width: 22px; height: 22px; }
.pf-item:hover .pf-zoom-hint {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.pf-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(4,4,4,0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
  backdrop-filter: blur(14px);
}
.pf-lightbox.open {
  opacity: 1;
  pointer-events: all;
}
.pf-lb-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: min(90vw, 1100px);
  max-height: 92vh;
}
.pf-lb-inner img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 12px;
  transition: opacity 0.3s;
  display: block;
}
.pf-lb-caption {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
}
.pf-lb-cat {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}
.pf-lb-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--cream);
}
.pf-lb-close {
  position: fixed;
  top: 24px; right: 28px;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(242,237,228,0.15);
  background: rgba(255,255,255,0.05);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
  z-index: 9001;
}
.pf-lb-close:hover { background: rgba(201,168,76,0.15); border-color: var(--gold); transform: rotate(90deg); }
.pf-lb-close svg { width: 20px; height: 20px; }
.pf-lb-prev, .pf-lb-next {
  position: fixed;
  top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(242,237,228,0.12);
  background: rgba(255,255,255,0.04);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s;
  z-index: 9001;
}
.pf-lb-prev { left: 24px; }
.pf-lb-next { right: 24px; }
.pf-lb-prev:hover, .pf-lb-next:hover { background: rgba(201,168,76,0.15); border-color: var(--gold); }
.pf-lb-prev svg, .pf-lb-next svg { width: 24px; height: 24px; }

/* ── Footer ──────────────────────────────────────── */
footer {
  background: #040404;
  padding: 60px;
  border-top: 1px solid var(--border-glass);
}
.footer-inner {
  max-width: 1260px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; }
.footer-logo-link { display: inline-block; text-decoration: none; }
.footer-logo-img { height: 48px; width: auto; display: block; }
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--cream);
}
.footer-logo span { color: var(--gold); }
.footer-tagline {
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  font-style: italic;
  color: var(--cream-muted);
  margin-top: 8px;
}
.footer-links { display: flex; gap: 32px; }
.footer-links a {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cream-muted);
  text-decoration: none;
  transition: color 0.3s;
  cursor: none;
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border-glass);
}
.footer-credit {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  color: rgba(242,237,228,0.30);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-credit:hover { color: var(--gold); }
.footer-copyright {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  color: rgba(242,237,228,0.25);
  letter-spacing: 1px;
}

/* ── Animations ──────────────────────────────────── */
@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes wordReveal {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes expandWidth {
  from { width: 0; }
  to   { width: 50px; }
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.7; }
  50%       { transform: scaleY(0.5); opacity: 0.3; }
}
@keyframes floatMask {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33%       { transform: translateY(-18px) rotate(3deg); }
  66%       { transform: translateY(10px) rotate(-2deg); }
}
@keyframes floatMaskSlow {
  0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
  50%       { transform: translateY(-24px) rotate(5deg) scale(1.04); }
}
.hero-mask-motif {
  position: absolute;
  pointer-events: none;
  z-index: 6;
  animation: floatMask 8s ease-in-out infinite;
}
.hero-mask-motif.slow { animation: floatMaskSlow 12s ease-in-out infinite; }
.hero-mask-motif.d1 { animation-delay: -2s; }
.hero-mask-motif.d2 { animation-delay: -5s; }
.hero-mask-motif.d3 { animation-delay: -8s; }
.hero-mask-motif.d4 { animation-delay: -3.5s; }

/* ── Decorative ──────────────────────────────────── */
.section-num {
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  font-family: 'Playfair Display', serif;
  font-size: 200px;
  font-weight: 300;
  color: rgba(201,168,76,0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -10px;
}
.gold-divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 24px 0;
}
.form-success { display: none; text-align: center; padding: 48px; }
.form-success.show { display: block; }

/* Mobile menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: none;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--cream);
  transition: transform 0.3s, opacity 0.3s, width 0.3s;
  transform-origin: center;
}

/* État ouvert → X */
.menu-toggle.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.menu-toggle.open span:nth-child(2) {
  opacity: 0;
  width: 0;
}
.menu-toggle.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 1024px) {
  .nav-inner { padding: 18px 30px; gap: 24px; }
  nav.scrolled .nav-inner { padding: 12px 30px; }
  .nav-links { gap: 20px; }
  .btn-nav-cta { display: none; }
  .hero-layout { padding: 110px 30px 80px; gap: 40px; }
  .hero-photos-pile { width: 300px; height: 400px; }
  .photo-card-1 { width: 210px; height: 270px; }
  .photo-card-2 { width: 210px; height: 255px; }
  .photo-card-3 { width: 210px; height: 290px; left: 75px; }
  section { padding: 80px 30px; }
  .hero-stats .hero-stat { padding: 20px; }
  .hero-stat-num { font-size: 32px; }
}

@media (max-width: 900px) {
  .hero-photos-pile { display: none; }
  .hero-content { max-width: 100%; }
  .hero-layout { justify-content: center; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: rgba(8,8,8,0.97);
    backdrop-filter: blur(20px);
    align-items: center;
    justify-content: center;
    gap: 40px;
    z-index: 99;
    overflow: hidden;
  }
  body.menu-open { overflow: hidden; }
  .nav-links.open a { font-size: 18px; letter-spacing: 4px; }
  .menu-toggle { display: flex; z-index: 100; }
  .nav-tagline { display: none; }
  .hero-layout { padding: 100px 20px 80px; }
  .hero-title { font-size: clamp(34px, 9vw, 52px); }
  .services-grid { grid-template-columns: 1fr; }
  .services-grid .service-card:nth-child(4),
  .services-grid .service-card:nth-child(5) { grid-column: auto; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image { aspect-ratio: 16/9; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .values-grid .value-card:last-child { grid-column: span 2; }
  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 280px 260px;
  }
  .pf-1 { grid-column: 1; grid-row: 1; }
  .pf-4 { grid-column: 1 / 3; grid-row: 2; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr 1fr; }
  .promise-bar { gap: 20px; padding: 20px 24px; }
  .footer-top { flex-direction: column; gap: 30px; }
  .footer-links { flex-wrap: wrap; gap: 16px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .hero-stats { display: grid; grid-template-columns: 1fr 1fr; }
  .hero-stats .hero-stat:nth-child(2) { border-right: none; }
  .promise-bar { flex-direction: column; gap: 20px; padding: 24px 20px; }
  .promise-bar > div[style] { display: none; }
  body { cursor: auto; }
  .cursor, .cursor-follower { display: none; }
  .hero-ctas { flex-wrap: wrap; gap: 14px; }
  .section-num { font-size: 120px; }
  footer { padding: 40px 20px; }
}

@media (max-width: 480px) {
  .nav-logo img { height: 28px; }
  .nav-inner { padding: 14px 16px; gap: 12px; }
  nav.scrolled .nav-inner { padding: 10px 16px; }
  .hero-layout { padding: 90px 16px 70px; }
  .hero-title { font-size: clamp(32px, 10vw, 48px); }
  .hero-subtitle { font-size: 13px; }
  section { padding: 60px 16px; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .hero-stat { padding: 16px 12px; }
  .hero-stat-num { font-size: 26px; }
  .hero-stat-label { font-size: 9px; letter-spacing: 1px; }
  .values-grid { grid-template-columns: 1fr; }
  .values-grid .value-card:last-child { grid-column: auto; }
  .audience-grid { grid-template-columns: 1fr; }
  .portfolio-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 260px);
  }
  .pf-1 { grid-column: 1; grid-row: 1; }
  .pf-4 { grid-column: 1; grid-row: 3; }
  .promise-bar { flex-direction: column; gap: 16px; }
  .promise-sep { display: none; }
  .contact-cta-title { font-size: clamp(32px,8vw,48px); }
  .pf-lb-prev { left: 10px; }
  .pf-lb-next { right: 10px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .btn-primary, .btn-ghost { padding: 13px 24px; font-size: 11px; }
}
