/* ==========================================================
   Guillaume Donzeau — Artiste Magicien
   Design : élégance sombre, or, mystère
   ========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,600&family=Inter:wght@300;400;500;600&family=Great+Vibes&display=swap');

/* ── Variables ─────────────────────────────────────────── */
:root {
  --bg:           #07070f;
  --bg-deep:      #040408;
  --bg-card:      #0e0e1c;
  --bg-card-h:    #141428;
  --bg-section:   #0a0a16;

  --gold:         #c9a227;
  --gold-light:   #e8c853;
  --gold-dark:    #9a7a1c;
  --gold-glow:    rgba(201, 162, 39, 0.18);
  --gold-border:  rgba(201, 162, 39, 0.25);

  --crimson:      #8b1a1a;
  --crimson-light:#b02020;

  --white:        #f5f5f0;
  --off-white:    #d8d8d0;
  --gray:         #7a7a88;
  --gray-light:   #a8a8b8;

  --font-h:       'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-b:       'Inter', system-ui, -apple-system, sans-serif;
  --font-c:       'Great Vibes', cursive;

  --ease:         cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:     cubic-bezier(0, 0, 0.2, 1);
  --tr:           0.3s var(--ease);
  --tr-slow:      0.7s var(--ease);

  --radius:       4px;
  --radius-lg:    12px;
  --shadow:       0 4px 24px rgba(0,0,0,0.6);
  --shadow-gold:  0 0 40px rgba(201,162,39,0.12);

  --nav-h:        80px;
  --max-w:        1200px;
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-b);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ── Utilitaires ───────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 110px 0; }
.section-sm { padding: 70px 0; }

.text-gold  { color: var(--gold); }
.text-gray  { color: var(--gray-light); }
.text-center{ text-align: center; }

.d-flex { display: flex; }
.gap-1  { gap: 8px; }
.gap-2  { gap: 16px; }
.gap-3  { gap: 24px; }

/* ── Typographie ───────────────────────────────────────── */
h1,h2,h3,h4,h5 { font-family: var(--font-h); font-weight: 700; line-height: 1.2; }

.eyebrow {
  font-family: var(--font-b);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-light);
  max-width: 600px;
  margin: 0 auto 60px;
}

.gold-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 20px auto 32px;
}

.cursive {
  font-family: var(--font-c);
  font-size: 1.6em;
  font-weight: 400;
  color: var(--gold);
}

/* ── Boutons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--tr);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--bg-deep);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,162,39,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold-border);
}
.btn-outline:hover {
  background: var(--gold-glow);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-2px);
}

/* ── Navigation ────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.nav.scrolled {
  background: rgba(7,7,15,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--gold-border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav__logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav__logo-name {
  font-family: var(--font-h);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--white);
}
.nav__logo-title {
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--off-white);
  position: relative;
  transition: color var(--tr);
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--tr);
}
.nav__link:hover,
.nav__link.active {
  color: var(--gold);
}
.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.nav__cta {
  padding: 10px 22px;
  font-size: 0.75rem;
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}
.nav__burger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--tr);
}

/* ── Hero ──────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Image plein-écran : portrait à gauche, zone sombre à droite */
.hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 20% center;
  z-index: 0;
}

/* Overlay : transparent sur le portrait, sombre sur la zone texte */
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      rgba(7,7,15,0.10) 0%,
      rgba(7,7,15,0.05) 38%,
      rgba(7,7,15,0.55) 60%,
      rgba(7,7,15,0.88) 80%,
      rgba(7,7,15,0.95) 100%),
    linear-gradient(180deg,
      rgba(7,7,15,0.50) 0%,
      rgba(7,7,15,0.00) 12%,
      rgba(7,7,15,0.00) 72%,
      var(--bg) 100%);
  z-index: 1;
}

/* Particules par-dessus l'image et le gradient */
.hero__canvas {
  position: absolute;
  inset: 0;
  z-index: 2;
}

/* Conteneur flex : contenu poussé à droite */
.hero__flex {
  display: flex;
  justify-content: flex-end;
}

/* Cadre texte = même taille que l'image, texte aligné à droite */
.hero__content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  text-align: right;
  padding: calc(var(--nav-h) + 40px) 6% 80px;
}

.hero__cursive {
  font-family: var(--font-c);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
  opacity: 0;
  animation: fadeUp 0.9s 0.3s var(--ease-out) forwards;
}

.hero__name {
  font-family: var(--font-h);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 4px;
  opacity: 0;
  animation: fadeUp 0.9s 0.5s var(--ease-out) forwards;
}

.hero__name span {
  color: var(--gold);
  font-style: italic;
}

.hero__subtitle {
  font-size: clamp(0.7rem, 1.5vw, 0.85rem);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 12px;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.9s 0.7s var(--ease-out) forwards;
}

/* Ligne décorative : part de la droite vers la gauche */
.hero__line {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.9s 0.8s var(--ease-out) forwards;
}

.hero__desc {
  font-size: 1.05rem;
  color: var(--off-white);
  max-width: 440px;
  line-height: 1.8;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.9s 0.9s var(--ease-out) forwards;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
  opacity: 0;
  animation: fadeUp 0.9s 1.1s var(--ease-out) forwards;
}

.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 1s 1.6s forwards;
}
.hero__scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gray);
}
.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ── Stats band ────────────────────────────────────────── */
.stats {
  background: var(--bg-card);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  padding: 48px 0;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stats__item {
  text-align: center;
  padding: 24px;
  border-right: 1px solid var(--gold-border);
}
.stats__item:last-child { border-right: none; }

.stats__number {
  font-family: var(--font-h);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.stats__label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-top: 8px;
}

/* ── About (aperçu) ────────────────────────────────────── */
.about {
  background: var(--bg);
}

/* Grille côte à côte : image gauche 55% — texte droite 45% */
.about__grid {
  display: grid;
  grid-template-columns: 55% 45%;
  align-items: stretch;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about__image-wrap {
  position: relative;
  align-self: start; /* ne s'étire pas selon la hauteur du texte */
}
.about__image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(7,7,15,0.02) 0%, rgba(7,7,15,0.02) 35%,
    rgba(7,7,15,0.72) 58%, rgba(7,7,15,0.95) 80%,
    rgba(7,7,15,1.00) 100%);
  pointer-events: none;
}

.about__image {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: left center;
  filter: grayscale(20%) contrast(1.05);
  display: block;
}

.about__badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  width: 120px;
  height: 120px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 3;
}
.about__badge-num {
  font-family: var(--font-h);
  font-size: 2rem;
  font-weight: 900;
  color: var(--bg-deep);
  line-height: 1;
}
.about__badge-text {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bg-deep);
  text-align: center;
  line-height: 1.2;
  margin-top: 2px;
}

/* Texte dans la colonne sombre droite */
.about__content {
  background: var(--bg);
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ── Style & Influences grid (a-propos) ─────────────────── */
.style-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.about__intro {
  font-size: 1.2rem;
  color: var(--off-white);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.about__text {
  color: var(--gray-light);
  margin-bottom: 40px;
}

.about__signature {
  font-family: var(--font-c);
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 32px;
}

/* ── Services ──────────────────────────────────────────── */
.services {
  background: var(--bg-section);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  transition: var(--tr);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--tr);
}
.service-card:hover {
  background: var(--bg-card-h);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold), var(--shadow);
  border-color: rgba(201,162,39,0.5);
}
.service-card:hover::before { opacity: 1; }

.service-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold-glow);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.5rem;
  transition: var(--tr);
}
.service-card:hover .service-card__icon {
  background: var(--gold);
  border-color: var(--gold);
}
.service-card:hover .service-card__icon svg { color: var(--bg-deep); }

.service-card__icon svg {
  width: 24px; height: 24px;
  color: var(--gold);
  transition: color var(--tr);
}

.service-card__title {
  font-family: var(--font-h);
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.service-card__text {
  font-size: 0.9rem;
  color: var(--gray-light);
  line-height: 1.7;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap var(--tr);
}
.service-card:hover .service-card__link { gap: 10px; }

/* ── Galerie aperçu ────────────────────────────────────── */
.gallery-preview {
  background: var(--bg);
}

.gallery-preview__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 300px 300px;
  gap: 12px;
  margin-bottom: 40px;
}

.gp-item {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gp-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease), filter 0.4s;
  filter: grayscale(20%);
}
.gp-item:hover img {
  transform: scale(1.05);
  filter: grayscale(0%);
}
.gp-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(201,162,39,0);
  transition: background var(--tr);
}
.gp-item:hover::after {
  background: rgba(201,162,39,0.08);
}

/* Placeholder pour photos non encore disponibles */
.gp-item--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
}
.gp-item--placeholder span {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
}

.gp-item:nth-child(1) { grid-column: span 5; }
.gp-item:nth-child(2) { grid-column: span 4; }
.gp-item:nth-child(3) { grid-column: span 3; }
.gp-item:nth-child(4) { grid-column: span 3; }
.gp-item:nth-child(5) { grid-column: span 5; }
.gp-item:nth-child(6) { grid-column: span 4; }

/* ── Témoignages ───────────────────────────────────────── */
.testimonials {
  background: var(--bg-section);
  overflow: hidden;
}

.testi__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testi-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  transition: var(--tr);
}
.testi-card:hover {
  border-color: rgba(201,162,39,0.5);
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
}

.testi-card__quote {
  font-size: 3rem;
  line-height: 1;
  color: var(--gold);
  font-family: var(--font-h);
  margin-bottom: 16px;
  opacity: 0.6;
}

.testi-card__stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}
.testi-card__stars svg {
  width: 16px; height: 16px;
  color: var(--gold);
  fill: var(--gold);
}

.testi-card__text {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--off-white);
  line-height: 1.8;
  margin-bottom: 28px;
}

.testi-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testi-card__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold-glow);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-h);
  font-size: 1rem;
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}
.testi-card__name {
  font-weight: 600;
  font-size: 0.9rem;
}
.testi-card__event {
  font-size: 0.78rem;
  color: var(--gray-light);
  letter-spacing: 0.05em;
}

/* ── Blog aperçu ───────────────────────────────────────── */
.blog-preview {
  background: var(--bg);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--tr);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold), var(--shadow);
  border-color: rgba(201,162,39,0.4);
}

.blog-card__img {
  height: 220px;
  overflow: hidden;
  background: var(--bg-card-h);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.blog-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
  filter: grayscale(15%);
}
.blog-card:hover .blog-card__img img {
  transform: scale(1.06);
}
.blog-card__img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%; height: 100%;
}

.blog-card__cat {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--gold);
  color: var(--bg-deep);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}

.blog-card__body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.75rem;
  color: var(--gray);
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.blog-card__title {
  font-family: var(--font-h);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 12px;
  color: var(--white);
  transition: color var(--tr);
}
.blog-card:hover .blog-card__title { color: var(--gold); }

.blog-card__excerpt {
  font-size: 0.88rem;
  color: var(--gray-light);
  line-height: 1.7;
  flex: 1;
}

.blog-card__read {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap var(--tr);
}
.blog-card:hover .blog-card__read { gap: 12px; }

/* ── CTA band ──────────────────────────────────────────── */
.cta-band {
  background: var(--bg-card);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201,162,39,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.cta-band__cursive {
  font-family: var(--font-c);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}

.cta-band__title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 20px;
}

.cta-band__sub {
  font-size: 1.05rem;
  color: var(--gray-light);
  max-width: 520px;
  margin: 0 auto 48px;
}

.cta-band__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── Contact page ──────────────────────────────────────── */
.contact-hero {
  padding: calc(var(--nav-h) + 80px) 0 80px;
  text-align: center;
  background: var(--bg-section);
  border-bottom: 1px solid var(--gold-border);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}

.contact-info__item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 36px;
}
.contact-info__icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gold-glow);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info__icon svg {
  width: 20px; height: 20px;
  color: var(--gold);
}
.contact-info__label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
  display: block;
  margin-bottom: 4px;
}
.contact-info__value {
  font-size: 1rem;
  color: var(--white);
  font-weight: 500;
}
.contact-info__value a:hover { color: var(--gold); }

.contact-social {
  display: flex;
  gap: 12px;
  margin-top: 40px;
}
.contact-social__link {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--tr);
}
.contact-social__link:hover {
  background: var(--gold);
  border-color: var(--gold);
}
.contact-social__link svg { width: 18px; height: 18px; color: var(--gold); transition: color var(--tr); }
.contact-social__link:hover svg { color: var(--bg-deep); }

/* Formulaire */
.form-group {
  margin-bottom: 24px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 14px 18px;
  color: var(--white);
  font-size: 0.95rem;
  transition: border-color var(--tr), box-shadow var(--tr);
}
.form-control::placeholder { color: var(--gray); }
.form-control:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,162,39,0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 150px;
}

select.form-control {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c9a227' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
}
select.form-control option { background: var(--bg-card); }

.form-success {
  display: none;
  background: rgba(39, 174, 96, 0.1);
  border: 1px solid rgba(39, 174, 96, 0.3);
  border-radius: var(--radius);
  padding: 20px;
  color: #6fcf97;
  text-align: center;
  margin-top: 16px;
}
.form-error-msg {
  display: none;
  color: #e74c3c;
  font-size: 0.85rem;
  margin-top: 6px;
}

/* ── Footer ────────────────────────────────────────────── */
.footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--gold-border);
  padding: 80px 0 40px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer__logo-name {
  font-family: var(--font-h);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.footer__logo-title {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer__desc {
  font-size: 0.9rem;
  color: var(--gray-light);
  line-height: 1.8;
  margin-bottom: 28px;
}

.footer__heading {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer__links li { margin-bottom: 12px; }
.footer__links a {
  font-size: 0.9rem;
  color: var(--gray-light);
  transition: color var(--tr);
}
.footer__links a:hover { color: var(--gold); }

.footer__contact-item {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
  font-size: 0.9rem;
  color: var(--gray-light);
}
.footer__contact-item svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--gray);
}

.footer__social {
  display: flex;
  gap: 10px;
}
.footer__social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--tr);
}
.footer__social a:hover {
  background: var(--gold-glow);
  border-color: var(--gold-border);
}
.footer__social svg { width: 16px; height: 16px; color: var(--gray-light); }
.footer__social a:hover svg { color: var(--gold); }

/* ── Page intérieure hero ──────────────────────────────── */
.page-hero {
  padding: calc(var(--nav-h) + 80px) 0 80px;
  background: var(--bg-section);
  text-align: center;
  border-bottom: 1px solid var(--gold-border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 100% at 50% 100%, rgba(201,162,39,0.05) 0%, transparent 70%);
}
.page-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  position: relative;
  z-index: 1;
}

/* ── Animations ────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}
@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }
.reveal.delay-4 { transition-delay: 0.4s; }
.reveal.delay-5 { transition-delay: 0.5s; }

/* ── Galerie page ──────────────────────────────────────── */
.gallery-masonry {
  columns: 3;
  gap: 16px;
}
.gallery-masonry .gal-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-masonry .gal-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s var(--ease), filter 0.3s;
  filter: grayscale(10%);
}
.gallery-masonry .gal-item:hover img {
  transform: scale(1.04);
  filter: grayscale(0%);
}
.gallery-masonry .gal-item::after {
  content: '↗';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%) scale(0);
  width: 48px; height: 48px;
  background: var(--gold);
  color: var(--bg-deep);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  transition: transform 0.3s var(--ease);
}
.gallery-masonry .gal-item:hover::after {
  transform: translate(-50%,-50%) scale(1);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.95);
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox__img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
}
.lightbox__close {
  position: absolute;
  top: 24px; right: 24px;
  width: 48px; height: 48px;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--tr);
}
.lightbox__close:hover { background: var(--gold); color: var(--bg-deep); }

/* ── Blog page ─────────────────────────────────────────── */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 60px;
  align-items: start;
}

.blog-sidebar__widget {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 28px;
}
.blog-sidebar__widget-title {
  font-family: var(--font-h);
  font-size: 1rem;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--gold-border);
  color: var(--gold);
}
.blog-sidebar__tag {
  display: inline-block;
  background: var(--bg-card-h);
  border: 1px solid var(--gold-border);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 0.78rem;
  color: var(--gray-light);
  margin: 0 4px 8px 0;
  transition: var(--tr);
  cursor: pointer;
}
.blog-sidebar__tag:hover,
.blog-sidebar__tag.active {
  background: var(--gold);
  color: var(--bg-deep);
  border-color: var(--gold);
}

/* ── À propos page ─────────────────────────────────────── */
.about-page__content {
  max-width: 760px;
  margin: 0 auto;
}
.about-page__content h2 {
  font-size: 1.8rem;
  margin: 48px 0 16px;
  color: var(--white);
}
.about-page__content p {
  color: var(--gray-light);
  line-height: 1.9;
  margin-bottom: 20px;
}
.about-page__content p strong { color: var(--white); }

.timeline {
  position: relative;
  padding-left: 40px;
  margin: 48px 0;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 1px;
  background: var(--gold-border);
}
.timeline__item {
  position: relative;
  margin-bottom: 36px;
}
.timeline__item::before {
  content: '';
  position: absolute;
  left: -44px; top: 6px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--bg);
  box-shadow: 0 0 0 3px var(--gold-border);
}
.timeline__year {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 6px;
}
.timeline__event {
  font-family: var(--font-h);
  font-size: 1.05rem;
  margin-bottom: 6px;
}
.timeline__desc {
  font-size: 0.9rem;
  color: var(--gray-light);
}

/* ── Spectacles page ───────────────────────────────────── */
.spectacle-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid var(--gold-border);
}
.spectacle-item:nth-child(even) { direction: rtl; }
.spectacle-item:nth-child(even) > * { direction: ltr; }

.spectacle-item__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 420px;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
}
.spectacle-item__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(15%);
}

.spectacle-item__num {
  font-family: var(--font-h);
  font-size: 5rem;
  font-weight: 900;
  color: var(--gold-border);
  line-height: 1;
  margin-bottom: -8px;
}
.spectacle-item__title {
  font-size: 2rem;
  margin-bottom: 20px;
}
.spectacle-item__desc {
  color: var(--gray-light);
  line-height: 1.9;
  margin-bottom: 28px;
}
.spectacle-item__features {
  list-style: none;
  margin-bottom: 32px;
}
.spectacle-item__features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--off-white);
  margin-bottom: 10px;
}
.spectacle-item__features li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 1100px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid   { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  .hero__photo { width: 100%; opacity: 0.2; }
  .testi__grid   { grid-template-columns: 1fr; }
  .blog-grid     { grid-template-columns: repeat(2, 1fr); }
  .contact-grid  { grid-template-columns: 1fr; }
  .spectacle-item { grid-template-columns: 1fr; gap: 40px; }
  .spectacle-item:nth-child(even) { direction: ltr; }
  .blog-layout   { grid-template-columns: 1fr; }
  .stats__grid   { grid-template-columns: repeat(2, 1fr); }
  .stats__item:nth-child(2) { border-right: none; }
  .gallery-preview__grid { grid-template-rows: 220px 220px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .nav__links { display: none; }
  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: var(--nav-h) 0 0 0;
    background: rgba(7,7,15,0.98);
    backdrop-filter: blur(12px);
    padding: 48px 32px;
    gap: 32px;
    align-items: flex-start;
    z-index: 999;
  }
  .nav__link { font-size: 1.2rem; }
  .nav__cta  { display: none; }
  .nav__burger { display: flex; }

  .nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__burger.open span:nth-child(2) { opacity: 0; }
  .nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .section { padding: 70px 0; }

  .blog-grid     { grid-template-columns: 1fr; }
  .services__grid{ grid-template-columns: 1fr; }
  .form-row      { grid-template-columns: 1fr; }
  .footer__grid  { grid-template-columns: 1fr; }
  .gallery-masonry { columns: 2; }

  .gallery-preview__grid {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: 180px 180px;
  }
  .gp-item:nth-child(1) { grid-column: span 3; }
  .gp-item:nth-child(2) { grid-column: span 3; }
  .gp-item:nth-child(3) { grid-column: span 2; }
  .gp-item:nth-child(4) { grid-column: span 2; }
  .gp-item:nth-child(5) { grid-column: span 2; }
  .gp-item:nth-child(6) { grid-column: span 3; }

  .hero__name { font-size: clamp(2.5rem, 12vw, 5rem); }
  /* Mobile : centré, voile uniforme sur tout le portrait */
  .hero__content {
    align-items: center;
    text-align: center;
    padding-left: 5%;
    padding-right: 5%;
  }
  .hero__actions { justify-content: center; }
  .hero__bg-img { object-position: 30% center; }
  .hero__bg {
    background:
      rgba(7,7,15,0.68),
      linear-gradient(180deg, rgba(7,7,15,0.5) 0%, rgba(7,7,15,0) 15%, rgba(7,7,15,0) 72%, var(--bg) 100%);
  }
  .footer__bottom { flex-direction: column; gap: 20px; }

  /* About mobile : une colonne — image puis texte */
  .about__grid    { grid-template-columns: 1fr; border-radius: 0; }
  .about__badge   { display: none; }
  .about__image   { min-height: unset; height: 280px; object-position: left top; }
  .about__image-wrap::after {
    background: linear-gradient(180deg, rgba(7,7,15,0) 50%, var(--bg) 100%);
  }
  .about__content {
    padding: 40px 6%;
    align-items: center;
    text-align: center;
  }
  .about__content .gold-divider { margin-left: auto; margin-right: auto; }
  .style-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .gallery-masonry { columns: 1; }
  .stats__grid   { grid-template-columns: repeat(2, 1fr); }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { text-align: center; justify-content: center; }
}

/* ── États hover pour images placeholder ───────────────── */
.img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-card-h) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--gray);
}
.img-placeholder svg { width: 40px; height: 40px; opacity: 0.4; }
.img-placeholder span { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; }

/* ── Barre de progression article ─────────────────────── */
.reading-progress {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  height: 2px;
  background: var(--gold);
  z-index: 999;
  width: 0%;
  transition: width 0.1s linear;
}

/* ── Pastille notification ─────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px; height: 20px;
  background: var(--crimson);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: 10px;
  padding: 0 6px;
}

/* ── Spinner ───────────────────────────────────────────── */
.spinner {
  width: 24px; height: 24px;
  border: 2px solid rgba(201,162,39,0.3);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spinSlow 0.8s linear infinite;
}
