/* ==============================================
   Encre Noire Studio — Global Styles
   Site de démonstration — Gradly-Concept
   ============================================== */

/* ============================================
   CSS VARIABLES — Dark Premium Theme
   ============================================ */
:root {
  /* Noir profond — base */
  --black: #0A0A0A;
  --black-soft: #111111;
  --black-light: #1A1A1A;
  --black-lighter: #222222;
  
  /* Gris — hiérarchie */
  --gray-900: #2A2A2A;
  --gray-800: #3A3A3A;
  --gray-700: #4A4A4A;
  --gray-600: #5A5A5A;
  --gray-500: #6A6A6A;
  --gray-400: #8A8A8A;
  --gray-300: #AAAAAA;
  --gray-200: #CCCCCC;
  --gray-100: #E5E5E5;
  
  /* Blanc — texte */
  --white: #FFFFFF;
  --white-soft: #F5F5F5;
  
  /* Accent — or/métallique */
  --gold: #C9A962;
  --gold-light: #D4BC7D;
  --gold-dark: #A8893F;
  
  /* Accent secondaire */
  --accent: #C9A962;
  --accent-hover: #D4BC7D;
  
  /* Texte */
  --text-primary: #FFFFFF;
  --text-secondary: #AAAAAA;
  --text-muted: #6A6A6A;
  
  /* Effets */
  --gradient-hero: linear-gradient(180deg, rgba(10,10,10,0) 0%, rgba(10,10,10,0.8) 100%);
  --gradient-card: linear-gradient(145deg, #1A1A1A 0%, #111111 100%);
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.4);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.5);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.6);
  --shadow-gold: 0 4px 20px rgba(201, 169, 98, 0.3);
  
  /* Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  
  /* Transition */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-secondary);
  line-height: 1.6;
  background: var(--black);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
.encre-noire-page h1,
.encre-noire-page h2,
.encre-noire-page h3,
.encre-noire-page h4,
.skin-tattoo-page h1,
.skin-tattoo-page h2,
.skin-tattoo-page h3,
.skin-tattoo-page h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: var(--white);
  font-weight: 600;
  line-height: 1.2;
}

.encre-noire-page h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  letter-spacing: -0.02em;
}

.encre-noire-page h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.01em;
}

.encre-noire-page h3 {
  font-size: 1.5rem;
}

.encre-noire-page h4 {
  font-size: 1.25rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

.encre-noire-page p {
  font-size: 1rem;
  color: var(--text-secondary);
}

/* ============================================
   SKIP TO CONTENT — Accessibilité
   ============================================ */
.en-skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 99999;
  padding: 10px 20px;
  background: var(--gold);
  color: var(--black);
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  text-decoration: none;
  transition: top 0.2s ease;
}
.en-skip-link:focus {
  top: 0;
  outline: 3px solid var(--black);
  outline-offset: 2px;
}

/* ============================================
   DEMO BANNER
   ============================================ */
.en-demo-banner {
  background: linear-gradient(90deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  color: var(--black);
  padding: 10px 20px;
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 500;
  position: relative;
  z-index: 1001;
}

.en-demo-banner-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.en-demo-banner svg {
  flex-shrink: 0;
}

.en-demo-banner a {
  color: var(--black);
  font-weight: 700;
  text-decoration: underline;
}

.en-demo-banner a:hover {
  text-decoration: none;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.en-header {
  position: fixed;
  top: var(--banner-height, 0px); /* Below demo banner */
  left: 0;
  right: 0;
  z-index: 1002;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition);
}

.en-header.scrolled {
  background: rgba(10, 10, 10, 0.98);
  box-shadow: var(--shadow-lg);
}

.en-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.en-header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.en-logo-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.en-logo-icon svg {
  width: 32px;
  height: 32px;
  color: var(--gold);
}

.en-header-logo-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.05em;
}

.en-header-logo-sub {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
}

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

.en-nav a {
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: var(--transition);
  text-decoration: none;
  position: relative;
}

.en-nav a:not(.en-nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: var(--transition);
}

.en-nav a:not(.en-nav-cta):hover {
  color: var(--white);
}

.en-nav a:not(.en-nav-cta):hover::after {
  width: 100%;
}

.en-nav-cta {
  background: transparent;
  color: var(--gold) !important;
  padding: 12px 24px;
  border: 1px solid var(--gold);
  border-radius: var(--radius-sm);
  font-weight: 600 !important;
  transition: var(--transition);
}

.en-nav-cta:hover {
  background: var(--gold);
  color: var(--black) !important;
}

/* Mobile menu */
.en-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 1001;
}

.en-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.en-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.en-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.en-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 900px) {
  .en-menu-toggle {
    display: flex;
    position: fixed;
    top: calc(var(--banner-height, 0px) + 20px);
    right: 24px;
    z-index: 1010;
  }

  .en-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--black);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    padding: 40px;
    transition: right 0.3s ease;
    border-left: 1px solid rgba(255,255,255,0.05);
    box-shadow: -10px 0 40px rgba(0,0,0,0.5);
    z-index: 1001;
  }

  .en-nav.open {
    right: 0;
  }

  .en-nav a {
    font-size: 1.125rem;
  }

  .en-nav-cta {
    width: 100%;
    text-align: center;
  }
}

/* Mobile menu backdrop */
.en-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
}

.en-nav-backdrop.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* ============================================
   CONTAINER
   ============================================ */
.en-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   SECTIONS
   ============================================ */
.en-section {
  padding: 100px 0;
}

.en-section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.en-section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  padding: 8px 16px;
  border: 1px solid rgba(201, 169, 98, 0.3);
  border-radius: var(--radius-sm);
}

.en-section-header h2 {
  margin-bottom: 20px;
}

.en-section-header p {
  font-size: 1.125rem;
  color: var(--text-secondary);
}

/* ============================================
   BUTTONS
   ============================================ */
.en-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  border: none;
}

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

.en-btn-primary {
  background: var(--gold);
  color: var(--black);
}

.en-btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.en-btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
}

.en-btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.en-btn-lg {
  padding: 18px 36px;
  font-size: 1rem;
}

.en-btn-sm {
  padding: 10px 20px;
  font-size: 0.875rem;
}

/* ============================================
   BREADCRUMB (PAGES INTERNES)
   ============================================ */
.en-page-breadcrumb {
  position: absolute;
  top: calc(var(--banner-height, 40px) + 80px);
  left: 0;
  right: 0;
  z-index: 10;
}

.en-page-breadcrumb .en-container {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
}

.en-page-breadcrumb a {
  color: var(--text-muted);
  transition: var(--transition);
}

.en-page-breadcrumb a:hover {
  color: var(--gold);
}

.en-page-breadcrumb svg {
  color: var(--gray-600);
}

.en-page-breadcrumb span {
  color: var(--text-secondary);
}

/* ============================================
   HERO SECTION
   ============================================ */
.en-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 118px; /* Demo banner + header */
}

.en-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.en-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.en-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 10, 0.85) 0%,
    rgba(10, 10, 10, 0.7) 50%,
    rgba(10, 10, 10, 0.85) 100%
  );
}

.en-hero-content {
  position: relative;
  max-width: 700px;
  padding: 60px 0;
}

.en-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.en-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.en-hero h1 {
  margin-bottom: 24px;
}

.en-hero-accent {
  color: var(--gold);
  font-style: italic;
}

.en-hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.7;
}

.en-hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.en-hero-stats {
  display: flex;
  align-items: center;
  gap: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.en-stat {
  text-align: center;
}

.en-stat-number {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
}

.en-stat-label {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.en-stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.1);
}


/* Hero page variant (inner pages) */
.en-hero-page {
  min-height: auto;
  padding: 180px 0 80px;
  background: var(--black);
}

.en-hero-page::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, rgba(201, 169, 98, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

@media (max-width: 768px) {
  .en-hero {
    padding-top: 140px;
  }
  
  .en-hero-content {
    padding: 40px 0;
  }
  
  .en-hero-stats {
    flex-wrap: wrap;
    gap: 30px;
  }
  
  .en-stat-divider {
    display: none;
  }
  
.en-hero-buttons {
    flex-direction: column;
  }

  .en-hero-buttons .en-btn {
    width: 100%;
  }

  .en-hero-page {
    padding: 150px 0 50px;
  }
}

/* ============================================
   STYLES / SPÉCIALITÉS SECTION
   ============================================ */
.en-styles {
  background: var(--black-soft);
}

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

.en-style-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--black-light);
  border: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition);
}

.en-style-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 169, 98, 0.3);
  box-shadow: var(--shadow-lg);
}

.en-style-image {
  height: 280px;
  overflow: hidden;
}

.en-style-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: var(--transition-slow);
}

.en-style-card:hover .en-style-image img {
  transform: scale(1.05);
}

.en-style-content {
  padding: 28px;
}

.en-style-content h3 {
  font-size: 1.375rem;
  margin-bottom: 12px;
  color: var(--white);
}

.en-style-content p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .en-styles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .en-styles-grid {
    grid-template-columns: 1fr;
  }
  
  .en-style-image {
    height: 220px;
  }

  .en-style-image img {
    height: 100%;
  }
}

/* ============================================
   ARTISTE SECTION
   ============================================ */
.en-artiste {
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.en-artiste::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at right, rgba(201, 169, 98, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.en-artiste-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.en-artiste-visual {
  position: relative;
}

.en-artiste-image-wrapper {
  position: relative;
}

.en-artiste-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-lg);
  display: block;
}

.en-artiste-accent {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.en-artiste-quote {
  background: var(--gradient-card);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 28px;
  border-radius: var(--radius-md);
  margin-top: -60px;
  margin-left: 40px;
  position: relative;
  z-index: 1;
}

.en-artiste-quote svg {
  width: 32px;
  height: 32px;
  color: var(--gold);
  margin-bottom: 12px;
  opacity: 0.5;
}

.en-artiste-quote p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25rem;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.6;
}

.en-artiste-text .en-section-tag {
  margin-bottom: 20px;
}

.en-artiste-text h2 {
  margin-bottom: 24px;
}

.en-artiste-intro {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.7;
}

.en-artiste-text > p {
  margin-bottom: 16px;
  line-height: 1.7;
}

.en-artiste-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 32px 0;
}

.en-artiste-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

.en-artiste-feature svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .en-artiste-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .en-artiste-visual {
    order: -1;
  }
  
  .en-artiste-image {
    height: 400px;
  }
  
  .en-artiste-quote {
    margin-left: 20px;
  }
}

/* ============================================
   GALERIE SECTION
   ============================================ */
.en-galerie {
  background: var(--black-soft);
}

.en-galerie-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.en-galerie-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}

.en-galerie-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.en-galerie-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: var(--transition-slow);
}

.en-galerie-item:hover .en-galerie-image img {
  transform: scale(1.08);
}

.en-galerie-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.9) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: var(--transition);
}

.en-galerie-item:hover .en-galerie-overlay,
.en-galerie-item.touch-active .en-galerie-overlay,
.en-gallery-item.touch-active .en-gallery-overlay {
  opacity: 1;
}

.en-galerie-tag {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.en-galerie-overlay h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25rem;
  color: var(--white);
}

.en-galerie-large {
  grid-column: span 2;
}

.en-galerie-large .en-galerie-image {
  height: 400px;
}

.en-galerie-cta {
  text-align: center;
  margin-top: 50px;
}

.en-galerie-cta p {
  margin-bottom: 20px;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .en-galerie-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .en-galerie-large {
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  .en-galerie-grid {
    grid-template-columns: 1fr;
  }
  
  .en-galerie-large {
    grid-column: span 1;
  }
  
  .en-galerie-large .en-galerie-image,
  .en-galerie-image {
    height: 260px;
  }
  
  .en-galerie-overlay {
    opacity: 1;
  }
}

/* ============================================
   STUDIO SECTION
   ============================================ */
.en-studio {
  background: var(--black);
}

.en-studio-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.en-studio-text .en-section-tag {
  margin-bottom: 20px;
}

.en-studio-text h2 {
  margin-bottom: 24px;
}

.en-studio-intro {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.7;
}

.en-studio-features {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.en-studio-feature {
  display: flex;
  gap: 20px;
}

.en-studio-feature-icon {
  width: 50px;
  height: 50px;
  background: rgba(201, 169, 98, 0.1);
  border: 1px solid rgba(201, 169, 98, 0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.en-studio-feature-icon svg {
  width: 24px;
  height: 24px;
  color: var(--gold);
}

.en-studio-feature h4 {
  font-size: 1.0625rem;
  color: var(--white);
  margin-bottom: 6px;
}

.en-studio-feature p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.en-studio-visual {
  position: relative;
}

.en-studio-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.en-studio-img {
  border-radius: var(--radius-md);
  transition: var(--transition);
  overflow: hidden;
}

.en-studio-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.en-studio-img:hover {
  transform: scale(1.02);
}

.en-studio-img-1 {
  grid-column: span 2;
  height: 280px;
}

.en-studio-img-2,
.en-studio-img-3 {
  height: 200px;
}

@media (max-width: 900px) {
  .en-studio-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.en-process {
  background: var(--black-soft);
}

.en-process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.en-process-step {
  position: relative;
  padding: 32px 24px;
  background: var(--gradient-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.en-process-step:hover {
  border-color: rgba(201, 169, 98, 0.2);
  transform: translateY(-4px);
}

.en-step-number {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 3rem;
  font-weight: 600;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 20px;
}

.en-step-content h3 {
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 12px;
}

.en-step-content p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .en-process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .en-process-steps {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   TARIFS SECTION
   ============================================ */
.en-tarifs {
  background: var(--black);
}

.en-tarifs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.en-tarif-card {
  position: relative;
  background: var(--gradient-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.en-tarif-card .en-tarif-details {
  flex: 1;
}

.en-tarif-card:hover {
  border-color: rgba(201, 169, 98, 0.2);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.en-tarif-popular {
  border-color: var(--gold);
}

.en-tarif-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--black);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
}

.en-tarif-icon {
  width: 56px;
  height: 56px;
  background: rgba(201, 169, 98, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.en-tarif-icon svg {
  width: 28px;
  height: 28px;
  color: var(--gold);
}

.en-tarif-card h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 16px;
}

.en-tarif-price {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 16px;
}

.en-tarif-desc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.6;
}

.en-tarif-details {
  text-align: left;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.en-tarif-details li {
  font-size: 0.875rem;
  color: var(--text-secondary);
  padding: 8px 0;
  padding-left: 20px;
  position: relative;
}

.en-tarif-details li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
}

.en-tarif-card .en-btn {
  margin-top: 24px;
  width: 100%;
  justify-content: center;
}

.en-tarifs-note {
  text-align: center;
  max-width: 700px;
  margin: 50px auto 0;
}

.en-tarifs-note p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.en-tarifs-note strong {
  color: var(--text-secondary);
}

@media (max-width: 900px) {
  .en-tarifs-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 700px;
  }
}

@media (max-width: 600px) {
  .en-tarifs-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}

/* ============================================
   TÉMOIGNAGES SECTION
   ============================================ */
.en-temoignages {
  background: var(--black-soft);
}

.en-temoignages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.en-temoignage-card {
  background: var(--gradient-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: var(--transition);
}

.en-temoignage-card:hover {
  border-color: rgba(201, 169, 98, 0.15);
}

.en-temoignage-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.en-temoignage-text {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.en-temoignage-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.en-temoignage-avatar {
  width: 48px;
  height: 48px;
  background: var(--gold);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
}

.en-temoignage-name {
  font-weight: 600;
  color: var(--white);
  font-size: 0.9375rem;
}

.en-temoignage-meta {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 2px;
}

@media (max-width: 900px) {
  .en-temoignages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .en-temoignages-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
}

/* ============================================
   FAQ SECTION
   ============================================ */
.en-faq {
  background: var(--black);
}

.en-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.en-faq-item {
  background: var(--gradient-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: var(--transition);
}

.en-faq-item:hover {
  border-color: rgba(201, 169, 98, 0.15);
}

.en-faq-item h4 {
  font-size: 1.0625rem;
  color: var(--white);
  margin-bottom: 12px;
  font-family: 'Montserrat', sans-serif;
}

.en-faq-item p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .en-faq-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   CTA SECTION
   ============================================ */
.en-cta {
  background: var(--black-soft);
  position: relative;
  overflow: hidden;
}

.en-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(201, 169, 98, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.en-cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.en-cta-content h2 {
  margin-bottom: 20px;
}

.en-cta-content > p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.en-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.en-cta-contact {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.en-cta-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

.en-cta-contact-item svg {
  color: var(--gold);
}

.en-cta-contact-item a {
  color: var(--text-secondary);
  transition: var(--transition);
}

.en-cta-contact-item a:hover {
  color: var(--gold);
}

@media (max-width: 600px) {
  .en-cta-buttons {
    flex-direction: column;
  }
  
  .en-cta-buttons .en-btn {
    width: 100%;
  }
  
  .en-cta-contact {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.en-style-card,
.en-galerie-item,
.en-process-step,
.en-tarif-card,
.en-temoignage-card,
.en-faq-item {
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* La classe .en-anim-ready est ajoutée par JS — sans JS, tout reste visible */
.en-anim-ready {
  opacity: 0;
  transform: translateY(30px);
}

.en-anim-ready.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   FOOTER
   ============================================ */
.en-footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 80px 0 30px;
}

.en-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.en-footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.en-logo-icon-sm {
  width: 32px;
  height: 32px;
}

.en-logo-icon-sm svg {
  width: 28px;
  height: 28px;
  color: var(--gold);
}

.en-footer-brand-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
}

.en-footer-brand-sub {
  font-size: 0.625rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.en-footer-desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 24px;
}

.en-footer-social {
  display: flex;
  gap: 16px;
}

.en-footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: var(--transition);
}

.en-footer-social a:hover {
  background: var(--gold);
  color: var(--black);
}

.en-footer-social svg {
  width: 18px;
  height: 18px;
}

.en-footer-title {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
}

.en-footer-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.en-footer-links a {
  font-size: 0.9375rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.en-footer-links a:hover {
  color: var(--gold);
}

.en-footer-address {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.en-footer-hours {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.en-hour-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9375rem;
  color: var(--text-muted);
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}

.en-hour-row span:last-child {
  color: var(--text-secondary);
}

.en-hour-note {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 8px;
}

.en-footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.en-footer-copy {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.en-footer-legal {
  display: flex;
  align-items: center;
  gap: 16px;
}

.en-footer-legal a {
  font-size: 0.8125rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.en-footer-legal a:hover {
  color: var(--gold);
}

.en-footer-separator {
  color: var(--gray-700);
}

/* Footer SEO link */
.en-footer-seo {
  padding: 20px 0;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  text-align: center;
}

.en-footer-seo-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: var(--transition);
}

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

.en-footer-seo-link svg {
  color: var(--gold);
  flex-shrink: 0;
}

/* Footer Gradly link */
.en-footer-gradly {
  font-size: 0.8125rem;
  color: var(--text-muted);
  transition: var(--transition);
}

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

@media (max-width: 900px) {
  .en-footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .en-footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  
  .en-footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .en-footer-legal {
    flex-wrap: wrap;
    justify-content: center;
  }
}


/* === CTA BANDEAU STICKY === */
@keyframes vh-cta-slidein {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
#vh-cta-bandeau {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9990;
  display: flex; align-items: center; justify-content: center;
  gap: 12px; padding: 10px 16px;
  background: #111827;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.35);
  visibility: hidden; opacity: 0; transform: translateY(100%); transition: none;
}
#vh-cta-bandeau.vh-cta-visible {
  visibility: visible;
  animation: vh-cta-slidein 0.45s cubic-bezier(0.22,1,0.36,1) forwards;
}
.vh-cta-text {
  color: #fff; font-size: 0.875rem; font-weight: 500;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  flex-shrink: 1; min-width: 0;
}
.vh-cta-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 18px; background: #f59e0b; color: #111827;
  font-size: 0.875rem; font-weight: 700; border-radius: 8px;
  text-decoration: none; white-space: nowrap; flex-shrink: 0;
  transition: background 0.2s ease, transform 0.15s ease;
  box-shadow: 0 2px 8px rgba(245,158,11,0.4); min-height: 44px;
}
.vh-cta-btn:hover { background: #d97706; transform: scale(1.03); }
.vh-cta-btn:active { transform: scale(0.97); }
.vh-cta-close {
  position: absolute; top: 50%; right: 10px; transform: translateY(-50%);
  background: transparent; border: none; color: rgba(255,255,255,0.2);
  font-size: 0.75rem; cursor: pointer; padding: 6px; border-radius: 4px;
  transition: color 0.2s ease; min-width: 36px; min-height: 36px;
  display: flex; align-items: center; justify-content: center;
}
.vh-cta-close:hover { color: rgba(255,255,255,0.5); }
@media (max-width: 600px) {
  #vh-cta-bandeau {
    flex-direction: column; align-items: stretch;
    gap: 6px; padding: 10px 40px 10px 14px;
  }
  .vh-cta-text { font-size: 0.8rem; white-space: normal; text-align: center; }
  .vh-cta-btn { width: 100%; justify-content: center; padding: 10px 14px; min-height: 44px; }
  .vh-cta-close { top: 10px; transform: none; }
}

/* === POPUP PROSPECTION GRADLY CONCEPT === */
#vh-popup-overlay {
  position: fixed; inset: 0; z-index: 99999;
  background: rgba(0,0,0,0.75);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  visibility: hidden; opacity: 0;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
#vh-popup-overlay.vh-popup-visible {
  visibility: visible; opacity: 1;
}
#vh-popup-box {
  position: relative;
  background: #111827;
  border: 1px solid rgba(201,169,98,0.25);
  border-radius: 16px;
  padding: 40px 32px 32px;
  max-width: 480px; width: 100%;
  text-align: center;
  box-shadow: 0 24px 64px rgba(0,0,0,0.6);
  transform: translateY(24px);
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1);
}
#vh-popup-overlay.vh-popup-visible #vh-popup-box {
  transform: translateY(0);
}
#vh-popup-close {
  position: absolute; top: 14px; right: 14px;
  background: transparent; border: none;
  color: rgba(255,255,255,0.35); font-size: 1.1rem;
  cursor: pointer; padding: 6px; border-radius: 4px;
  transition: color 0.2s ease;
}
#vh-popup-close:hover { color: rgba(255,255,255,0.7); }
#vh-popup-icon { font-size: 2.5rem; margin-bottom: 12px; }
#vh-popup-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem; font-weight: 700;
  color: #fff; margin-bottom: 16px; line-height: 1.3;
}
#vh-popup-text {
  font-size: 0.9375rem; color: rgba(255,255,255,0.75);
  line-height: 1.65; margin-bottom: 20px;
}
#vh-popup-text strong { color: #f59e0b; }
#vh-popup-reassurance {
  list-style: none; padding: 0; margin: 0 0 28px;
  text-align: left; display: inline-block;
}
#vh-popup-reassurance li {
  font-size: 0.875rem; color: rgba(255,255,255,0.8);
  padding: 4px 0;
}
#vh-popup-btn-primary {
  display: block; width: 100%;
  padding: 14px 20px; margin-bottom: 12px;
  background: #f59e0b; color: #111827;
  font-size: 1rem; font-weight: 700;
  border-radius: 10px; text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
  box-shadow: 0 4px 16px rgba(245,158,11,0.4);
}
#vh-popup-btn-primary:hover { background: #d97706; transform: scale(1.02); }
#vh-popup-btn-secondary {
  display: block; width: 100%;
  padding: 10px; background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px; color: rgba(255,255,255,0.5);
  font-size: 0.875rem; cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}
#vh-popup-btn-secondary:hover {
  border-color: rgba(255,255,255,0.35); color: rgba(255,255,255,0.8);
}
@media (max-width: 500px) {
  #vh-popup-box { padding: 36px 20px 24px; }
  #vh-popup-title { font-size: 1.25rem; }
}
