/* ============================================================
   Jules Alingete Key — Thème Clair Premium
   Palette : Alabaster · Navy · Or Royal
============================================================ */

:root {
  --night:        #0A1628;
  --navy:         #132140;
  --gold:         #C9A84C;
  --gold-light:   #E8C96B;
  --gold-dark:    #A8893A;
  --emerald:      #1A7A4A;
  --alabaster:    #FDFCF9;
  --offwhite:     #F4F1EC;
  --gray-border:  #E5E0D8;
  --graytext:     #7A7A8A;
  --charcoal:     #2C2C3A;
  --softblack:    #0D0D14;
  --white:        #FFFFFF;

  --gradient-gold:   linear-gradient(90deg, #C9A84C, #E8C96B);
  --gradient-gold-v: linear-gradient(to bottom, #C9A84C, #E8C96B);

  --shadow-sm:   0 2px 8px rgba(10, 22, 40, 0.06);
  --shadow-md:   0 8px 24px rgba(10, 22, 40, 0.08);
  --shadow-lg:   0 20px 48px rgba(10, 22, 40, 0.1);
  --shadow-xl:   0 32px 64px rgba(10, 22, 40, 0.12);

  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;

  --transition:      all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-padding-top: 5rem;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--alabaster);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, blockquote { font-family: 'Playfair Display', serif; }
a { text-decoration: none; }
img { display: block; max-width: 100%; }

::selection { background: var(--gold); color: var(--night); }

/* Container */
.container { max-width: 1200px; margin: 0 auto; padding: 0 5vw; }

/* ============================================================
   NAVBAR — container centré + CTA
============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.2rem 0;
  background: transparent;
  transition: var(--transition);
}

.navbar.scrolled {
  padding: 0.75rem 0;
  background: rgba(253, 252, 249, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gray-border);
  box-shadow: var(--shadow-sm);
}

/* Variante inversée — hero sombre (ex: biographie) */
.navbar--inverted .nav-brand-name,
.navbar--inverted .nav-link,
.navbar--inverted .nav-cta {
  color: rgba(255, 255, 255, 0.85);
}

.navbar--inverted .nav-logo rect { stroke: rgba(255,255,255,0.7); }
.navbar--inverted .nav-logo text { fill: rgba(255,255,255,0.7); }

.navbar--inverted .nav-link:hover { color: var(--gold-light); }
.navbar--inverted .nav-link.active { color: #fff; }

.navbar--inverted .nav-cta {
  border-color: rgba(255,255,255,0.5);
}
.navbar--inverted .nav-cta:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border-color: rgba(255,255,255,0.8);
}

.navbar--inverted .nav-toggle-line { background: rgba(255,255,255,0.85); }

/* Une fois scrollé, retour au style normal */
.navbar--inverted.scrolled .nav-brand-name,
.navbar--inverted.scrolled .nav-link,
.navbar--inverted.scrolled .nav-cta { color: var(--charcoal); }
.navbar--inverted.scrolled .nav-link.active { color: var(--night); }
.navbar--inverted.scrolled .nav-link:hover { color: var(--gold-dark); }
.navbar--inverted.scrolled .nav-cta { border-color: var(--night); color: var(--night); }
.navbar--inverted.scrolled .nav-cta:hover { background: var(--night); color: #fff; }
.navbar--inverted.scrolled .nav-toggle-line { background: var(--night); }
.navbar--inverted.scrolled .nav-logo rect { stroke: #0A1628; }
.navbar--inverted.scrolled .nav-logo text { fill: #0A1628; }

/* Container interne centré */
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.nav-logo {
  width: 40px; height: 40px;
  transition: transform 0.6s ease;
  flex-shrink: 0;
}
.nav-brand:hover .nav-logo { transform: rotate(10deg); }

.nav-brand-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--night);
  letter-spacing: 0.02em;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2.5rem;
  flex: 1;
  justify-content: center;
}
@media (min-width: 768px) { .nav-links { display: flex; } }

.nav-link {
  position: relative;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal);
  transition: color 0.3s ease;
}

.nav-link:hover { color: var(--gold-dark); }

.nav-link.active { color: var(--night); font-weight: 600; }

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--gradient-gold);
  border-radius: 2px;
}

/* Côté droit : CTA + hamburger */
.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

/* Bouton CTA navbar */
.nav-cta {
  display: none;
  align-items: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--night);
  background: transparent;
  border: 1.5px solid var(--night);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-sm);
  transition: background 0.25s ease, color 0.25s ease;
}

.nav-cta:hover {
  background: var(--night);
  color: var(--white);
}

@media (min-width: 768px) { .nav-cta { display: inline-flex; } }

/* Hamburger */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
@media (min-width: 768px) { .nav-toggle { display: none; } }

.nav-toggle-line {
  display: block;
  width: 24px; height: 2px;
  background: var(--night);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}

.nav-toggle.open .nav-toggle-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open .nav-toggle-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open .nav-toggle-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   MENU MOBILE — clair
============================================================ */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 90;
  background: rgba(253, 252, 249, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gray-border);
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding-top: 72px;
  overflow-y: auto;
  max-height: 100dvh;
}

.mobile-menu.open { transform: translateY(0); }

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  padding: 1.5rem 5vw 3.5rem;
}

.mobile-nav-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal);
  padding: 1rem 0;
  border-bottom: 1px solid var(--gray-border);
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.mobile-nav-link:last-child { border-bottom: none; }
.mobile-nav-link:hover { color: var(--gold-dark); padding-left: 0.5rem; }

.mobile-nav-cta {
  margin-top: 0.5rem;
  color: var(--night);
  font-weight: 600;
  border: 1.5px solid var(--night);
  border-radius: var(--radius-sm);
  text-align: center;
  padding: 0.9rem;
  letter-spacing: 0.06em;
}
.mobile-nav-cta:hover { background: var(--night); color: var(--white); padding-left: 0; }

/* ============================================================
   HERO — Editorial Portrait Clair
============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--alabaster);
  overflow: hidden;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
  .hero-inner {
    grid-template-columns: 55fr 45fr;
    align-items: center;
  }
}

/* Filigrane décoratif */
.hero-watermark {
  position: absolute;
  bottom: -4rem;
  right: -2rem;
  font-family: 'Playfair Display', serif;
  font-size: clamp(10rem, 22vw, 22rem);
  font-weight: 900;
  color: rgba(201, 168, 76, 0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* Contenu gauche */
.hero-content {
  position: relative;
  z-index: 2;
  padding: 8rem 5vw 4rem;
  order: 2;
}

@media (min-width: 1024px) {
  .hero-content { padding: 2rem 4vw 2rem 6vw; order: 1; }
}

/* Signature overline */
.hero-signature {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-signature-line {
  width: 2.5rem; height: 2px;
  background: var(--gradient-gold);
  flex-shrink: 0;
}

.hero-signature span {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

/* Nom signature (très grand, fond) */
.hero-name {
  display: flex;
  flex-direction: column;
  line-height: 0.92;
  margin-bottom: 1.5rem;
}

.hero-name-first {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 400;
  color: rgba(10, 22, 40, 0.12);
  letter-spacing: -0.01em;
}

.hero-name-last {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 700;
  color: var(--night);
  letter-spacing: -0.01em;
}

/* H1 headline */
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.35;
  margin-bottom: 1.75rem;
}

.hero-headline em {
  font-style: italic;
  color: var(--gold-dark);
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Ligne séparatrice avec meta */
.hero-divider-line {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-divider-gold {
  width: 40px; height: 2px;
  background: var(--gradient-gold);
  flex-shrink: 0;
}

.hero-divider-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--graytext);
}

.hero-dot {
  color: var(--gold);
  font-weight: 700;
}

/* CTA */
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

/* Awards rapides */
.hero-awards {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-award {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--graytext);
  background: var(--white);
  border: 1px solid var(--gray-border);
  padding: 0.38rem 0.8rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.hero-award-icon { font-size: 0.85rem; }

/* ─── Photo droite ─── */
.hero-photo-col {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 4vw 3rem;
  order: 1;
  background: var(--offwhite);
  min-height: 50vh;
}

@media (min-width: 1024px) {
  .hero-photo-col {
    padding: 6rem 4vw;
    order: 2;
    min-height: 100vh;
    align-items: center;
  }
}

.photo-frame-wrapper {
  position: relative;
  max-width: 420px;
  width: 100%;
}

/* Cadre décoratif extérieur décalé */
.photo-frame-outer {
  position: absolute;
  inset: 0;
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  transform: translate(16px, -16px);
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 0;
}

.photo-frame-wrapper:hover .photo-frame-outer {
  transform: translate(20px, -20px);
}

/* Cadre intérieur (photo) */
.photo-frame-inner {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.7s ease;
}

.photo-frame-wrapper:hover .photo-frame-inner {
  transform: translate(-6px, 6px);
  box-shadow: var(--shadow-lg);
}

/* Slideshow */
.hero-slideshow {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

/* Badge flottant */
.photo-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  z-index: 3;
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow-lg);
  min-width: 200px;
}

.photo-badge-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--offwhite);
  border: 1px solid rgba(201,168,76,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-dark);
  flex-shrink: 0;
}
.photo-badge-icon svg { width: 20px; height: 20px; }

.photo-badge-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--graytext);
  margin-bottom: 0.2rem;
}

.photo-badge-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--night);
  line-height: 1;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 27%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  color: var(--graytext);
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  z-index: 3;
}
@media (min-width: 1024px) { .hero-scroll { left: 27%; } }

.hero-scroll svg {
  width: 18px; height: 18px;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 0.4; }
  50%       { transform: translateY(6px); opacity: 1; }
}

/* ============================================================
   BOUTONS — thème clair
============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--night);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(168, 137, 58, 0.35);
}

.btn-primary svg { width: 16px; height: 16px; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border: 1.5px solid var(--night);
  color: var(--night);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.btn-outline:hover {
  background: var(--night);
  color: var(--white);
  transform: translateY(-2px);
}

/* ============================================================
   SECTION CHIFFRES CLÉS — fond clair
============================================================ */
.stats-section {
  background: var(--white);
  padding: 5.5rem 5vw;
  border-top: 1px solid var(--gray-border);
  border-bottom: 1px solid var(--gray-border);
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* Eyebrow label */
.section-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.75rem;
}

.section-eyebrow:not(.section-eyebrow-left) { justify-content: center; }

.eyebrow-line {
  width: 2rem; height: 1px;
  background: var(--gradient-gold);
}

.section-title-center {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--night);
  margin-bottom: 3.5rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--gray-border);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

@media (min-width: 768px)  { .stats-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .stats-grid { grid-template-columns: repeat(5, 1fr); } }

.stat-card {
  padding: 2.5rem 1.25rem;
  background: var(--white);
  text-align: center;
  transition: background 0.3s ease;
}

.stat-card:hover { background: var(--alabaster); }

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--night);
  line-height: 1;
  margin-bottom: 0.6rem;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.1rem;
}

.stat-unit {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold-dark);
}

.stat-divider {
  width: 24px; height: 2px;
  background: var(--gradient-gold);
  border-radius: 2px;
  margin: 0.75rem auto;
}

.stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: var(--graytext);
  line-height: 1.6;
}

.stat-label small {
  display: block;
  font-size: 0.68rem;
  color: rgba(122, 122, 138, 0.7);
  margin-top: 0.2rem;
}

/* ============================================================
   SECTION À PROPOS — fond offwhite
============================================================ */
.about-section {
  background: var(--offwhite);
  padding: 7rem 5vw;
}

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 1.5rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 1024px) { .about-grid { grid-template-columns: 5fr 7fr; } }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--night);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.about-body {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.about-body p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--charcoal);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--night);
  transition: gap 0.3s ease, color 0.3s ease;
}

.link-arrow:hover { gap: 0.85rem; color: var(--gold-dark); }
.link-arrow svg { width: 16px; height: 16px; transition: transform 0.3s ease; }
.link-arrow:hover svg { transform: translateX(3px); }

/* Expertise cards */
.expertise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

@media (max-width: 480px) { .expertise-grid { grid-template-columns: 1fr; } }

.expertise-card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-slow);
  position: relative;
  overflow: hidden;
}

.expertise-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201, 168, 76, 0.4);
}

/* Accent top */
.expertise-card-accent {
  position: absolute;
  top: 0; left: 1.5rem;
  width: 36px; height: 3px;
  background: var(--gradient-gold);
  border-radius: 0 0 3px 3px;
}

.expertise-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--offwhite);
  border: 1px solid rgba(201,168,76,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-dark);
  margin-bottom: 1rem;
  margin-top: 0.5rem;
}

.expertise-icon svg { width: 22px; height: 22px; }

.expertise-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--night);
  margin-bottom: 0.5rem;
}

.expertise-card p {
  font-size: 0.84rem;
  line-height: 1.65;
  color: var(--graytext);
}

/* ============================================================
   SECTION CITATION — fond sombre (contraste)
============================================================ */
/* ============================================================
   SECTION CITATION — photo en background + overlay
============================================================ */
.quote-section {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 7rem 2rem;
  text-align: center;
}

.quote-bg {
  position: absolute;
  inset: -20%;
  width: 100%;
  height: 140%;
  object-fit: cover;
  object-position: center center;
  display: block;
  will-change: transform;
}

.quote-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 22, 40, 0.82) 0%,
    rgba(10, 22, 40, 0.70) 100%
  );
}

.quote-container {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
}

.quote-icon {
  width: 32px; height: 32px;
  color: var(--gold);
  opacity: 0.55;
  margin: 0 auto 1.75rem;
  display: block;
}

.quote-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.75rem);
  font-style: italic;
  color: rgba(232, 201, 107, 0.95);
  line-height: 1.75;
  margin-bottom: 2.25rem;
}

.quote-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.quote-author em { font-style: normal; color: rgba(255,255,255,0.22); }

.quote-line {
  width: 32px; height: 1px;
  background: rgba(201, 168, 76, 0.45);
  flex-shrink: 0;
}

/* ============================================================
   SECTION DISTINCTIONS & PRESSE — fond alabaster
============================================================ */
.distinctions-section {
  background: var(--alabaster);
  padding: 7rem 5vw;
  border-top: 1px solid var(--gray-border);
}

.distinctions-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 5rem;
}

@media (min-width: 1024px) { .distinctions-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }

.distinctions-cta {
  max-width: 1200px;
  margin: 3rem auto 0;
  text-align: center;
}

/* Distinctions */
.distinctions-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.distinction-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.distinction-card:hover {
  border-color: rgba(201,168,76,0.45);
  box-shadow: var(--shadow-md);
  transform: translateX(5px);
}

.distinction-year {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 900;
  color: rgba(201, 168, 76, 0.35);
  min-width: 3rem;
  flex-shrink: 0;
}

.distinction-content { flex: 1; }

.distinction-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--night);
  margin-bottom: 0.2rem;
}

.distinction-content p {
  font-size: 0.82rem;
  color: var(--graytext);
  line-height: 1.45;
}

.distinction-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--gray-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-dark);
  flex-shrink: 0;
  transition: var(--transition);
}

.distinction-card:hover .distinction-icon {
  background: var(--night);
  border-color: var(--night);
  color: var(--gold);
}

.distinction-icon svg { width: 18px; height: 18px; }

/* Presse */
.press-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.press-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: var(--transition-slow);
}

.press-card:hover {
  border-color: rgba(201,168,76,0.4);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.press-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--night);
  transition: color 0.3s;
}

.press-card:hover .press-name { color: var(--gold-dark); }

.press-card--link {
  text-decoration: none;
  color: inherit;
  position: relative;
}
.press-card--link::after {
  content: '↗';
  position: absolute;
  top: 1rem; right: 1rem;
  font-size: 0.75rem;
  color: var(--graytext);
  opacity: 0;
  transition: opacity 0.2s;
}
.press-card--link:hover::after { opacity: 1; color: var(--gold-dark); }

.press-detail {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  color: var(--graytext);
  line-height: 1.5;
}

/* ============================================================
   SECTION CTA — Contact
============================================================ */
.cta-section {
  background: var(--offwhite);
  border-top: 1px solid var(--gray-border);
  padding: 7rem 2rem;
}

.cta-inner {
  max-width: 900px;
  margin: 0 auto;
}

.cta-layout {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
  text-align: left;
}

@media (min-width: 768px) {
  .cta-layout {
    flex-direction: row;
    align-items: center;
    gap: 3.5rem;
  }
}

.cta-photo {
  flex-shrink: 0;
  width: 220px;
}

.cta-fadeshow {
  position: relative;
  width: 220px;
  height: 290px;
  border-radius: 16px;
  overflow: hidden;
  border: 3px solid var(--gold-dark);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.cta-fade-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.cta-fade-slide.active { opacity: 1; }

.cta-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.cta-content {
  flex: 1;
}

.cta-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 1.25rem;
}

.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--night);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.cta-sub {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--graytext);
  margin-bottom: 2.5rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: flex-start;
  margin-bottom: 1.75rem;
}

.cta-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--night);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.9rem 1.75rem;
  border-radius: var(--radius-sm);
  border: 2px solid var(--night);
  transition: var(--transition);
  text-decoration: none;
}

.cta-btn-primary svg { width: 18px; height: 18px; }

.cta-btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(168,137,58,0.3);
}

.cta-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: transparent;
  color: var(--night);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.9rem 1.75rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--night);
  transition: var(--transition);
  text-decoration: none;
}

.cta-btn-outline svg { width: 18px; height: 18px; }

.cta-btn-outline:hover {
  background: var(--night);
  color: #fff;
  transform: translateY(-2px);
}

.cta-social-note {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  color: var(--graytext);
  letter-spacing: 0.05em;
}

/* ============================================================
   FOOTER — sombre premium
============================================================ */
.site-footer {
  background: var(--night);
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  padding: 4.5rem 5vw 2rem;
  position: relative;
  overflow: hidden;
}

.footer-watermark {
  position: absolute;
  bottom: -3rem; right: 3vw;
  font-family: 'Playfair Display', serif;
  font-size: clamp(8rem, 18vw, 18rem);
  font-weight: 900;
  color: rgba(255,255,255,0.02);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

@media (min-width: 768px) {
  .footer-top { flex-direction: row; align-items: flex-start; justify-content: space-between; gap: 2rem; }
}

.footer-brand { display: flex; align-items: flex-start; gap: 1rem; }
.footer-logo { width: 50px; height: 50px; opacity: 0.8; flex-shrink: 0; }

.footer-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.25rem;
}

.footer-role {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  color: rgba(201,168,76,0.7);
  letter-spacing: 0.06em;
  margin-bottom: 0.2rem;
}

.footer-location {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.45);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 480px) { .footer-nav { flex-direction: row; gap: 2rem; } }
@media (min-width: 768px) { .footer-nav { flex-direction: column; gap: 0.75rem; } }

.footer-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  transition: color 0.3s ease;
}

.footer-link:hover { color: var(--gold); }

.footer-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}

@media (min-width: 768px) { .footer-right { align-items: flex-end; } }

.footer-quote-mini {
  font-family: 'Playfair Display', serif;
  font-size: 0.85rem;
  font-style: italic;
  color: rgba(201,168,76,0.65);
  line-height: 1.6;
}

@media (min-width: 768px) { .footer-quote-mini { text-align: right; } }

.footer-social { display: flex; gap: 0.75rem; }

.social-link {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.3);
  transition: var(--transition);
}

.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.08);
  transform: translateY(-2px);
}

.social-link svg { width: 17px; height: 17px; }

.footer-bottom {
  max-width: 1200px;
  margin: 1.75rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }

.footer-bottom p {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
}

.footer-credit { color: rgba(201,168,76,0.5) !important; }

.footer-credit-link {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
.footer-credit-link:hover { color: var(--gold-light); text-decoration: underline; }

/* ============================================================
   ANIMATIONS REVEAL
============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.active { opacity: 1; transform: translateX(0); }

.del-100 { transition-delay: 100ms; }
.del-200 { transition-delay: 200ms; }
.del-300 { transition-delay: 300ms; }

/* ============================================================
   RESPONSIVE MOBILE GLOBAL — index + partagé
============================================================ */
@media (max-width: 640px) {
  /* Hero index */
  .hero-content { padding: 7rem 1rem 3rem; }
  .hero-inner { padding: 0 1rem; min-height: auto; }

  /* Slideshow portrait */
  .photo-frame-wrapper { margin: 0 auto; max-width: calc(100vw - 2rem); }
  .hero-slide { max-width: 100%; }

  /* Section à propos */
  .about-section { padding: 4rem 1rem; }

  /* Stats */
  .stats-section { padding: 3rem 1rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }

  /* Distinctions */
  .distinctions-section { padding: 4rem 1rem; }
  .distinctions-grid { grid-template-columns: 1fr; }

  /* Presse */
  .press-section { padding: 4rem 1rem; }
  .press-grid { grid-template-columns: 1fr; }

  /* CTA */
  .cta-section { padding: 4rem 1rem; }
  .cta-actions { flex-direction: column; align-items: flex-start; gap: 1rem; }

  /* Navbar mobile */
  .nav-inner { padding: 0 1rem; }
  .mobile-menu-inner { padding: 1.5rem 1rem; }

  /* Footer */
  .site-footer { padding: 3rem 1rem 1.5rem; }
}
