.elementor-2543 .elementor-element.elementor-element-7aa2398{margin-top:0px;margin-bottom:0px;padding:0px 0px 0px 0px;}.elementor-2543 .elementor-element.elementor-element-a852e1b{--display:flex;}@media(max-width:767px){.elementor-2543 .elementor-element.elementor-element-7aa2398{padding:260px 0px 0px 0px;}}/* Start custom CSS for html, class: .elementor-element-aa0aeca *//* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,400&family=Montserrat:wght@200;300;400;500;600&display=swap');

:root {
  /* Color Palette */
  --color-primary: #1F1E1D;       /* Deep slate/charcoal */
  --color-accent: #C5A880;        /* Muted gold/brass */
  --color-accent-hover: #B3966E;  /* Darker gold for hovers */
  --color-bg-cream: #FAF6F0;      /* Warm premium cream */
  --color-text-dark: #2C2A29;     /* Deep body text color */
  --color-text-light: #FFFFFF;    /* Pure white for overlays */
  --color-text-muted: #6B6864;    /* Warm grey for captions */
  
  /* Glassmorphism Details */
  --glass-bg: rgba(255, 255, 255, 0.45);
  --glass-bg-hover: rgba(255, 255, 255, 0.65);
  --glass-border: rgba(255, 255, 255, 0.6);
  --glass-shadow: 0 30px 60px rgba(0, 0, 0, 0.05), 0 2px 10px rgba(0, 0, 0, 0.02);
  
  /* Fonts */
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Montserrat', sans-serif;
  
  /* Layout */
  --transition-smooth: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-fast: all 0.3s ease;
}

/* Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-bg-cream);
  color: var(--color-text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
/* ==========================================================================
   LATEST WORK CAROUSEL SECTION
   ========================================================================== */
.latest-work-section {
  position: relative;
  background-image: linear-gradient(rgba(250, 246, 240, 0.82), rgba(250, 246, 240, 0.82)), url('marble-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 2rem 0;
  overflow: hidden;
  text-align: center;
  z-index: 5;
}

.latest-work-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 12px;
  height: 100%;
  background: var(--color-accent);
  z-index: 2;
}

.gold-organic-blob-left {
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 260px;
  height: 260px;
  fill: rgba(197, 168, 128, 0.15);
  pointer-events: none;
  z-index: 1;
}

.gold-organic-blob-right {
  position: absolute;
  top: 5%;
  right: -80px;
  width: 320px;
  height: 320px;
  fill: rgba(197, 168, 128, 0.12);
  pointer-events: none;
  z-index: 1;
}

.section-title-wrapper {
  margin-bottom: 4rem;
  position: relative;
  z-index: 3;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 400;
  color: var(--color-primary);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-accent);
  font-weight: 500;
}

/* Active-Center Carousel Layout */
.carousel-container {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  height: 480px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3;
}

.carousel-slides {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ─── FIX : slides cachées complètement invisibles ─────────────────────── */
.carousel-slide {
  position: absolute;
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  /* Dimensions fixes pour éviter le rendu en taille naturelle */
  width: 320px;
  height: 400px;
  /* Entièrement cachées par défaut */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(0);
  z-index: 0;
  box-shadow: none;
}

/* Rendre visibles uniquement les 3 slides affichées */
.carousel-slide.prev,
.carousel-slide.next,
.carousel-slide.active {
  visibility: visible;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: var(--transition-smooth);
}

/* Slides latérales (précédente & suivante) */
.carousel-slide.prev,
.carousel-slide.next {
  width: 250px;
  height: 330px;
  opacity: 0.45;
  pointer-events: auto;
  cursor: pointer;
  z-index: 1;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.carousel-slide.prev {
  transform: translateX(-320px) scale(0.8);
}

.carousel-slide.next {
  transform: translateX(320px) scale(0.8);
}

.carousel-slide.prev:hover,
.carousel-slide.next:hover {
  opacity: 0.7;
}

/* Slide centrale active */
.carousel-slide.active {
  width: 320px;
  height: 400px;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0) scale(1.05);
  z-index: 3;
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.15);
}
/* ─────────────────────────────────────────────────────────────────────────── */

/* Cadre doré rotatif */
.carousel-gold-frame {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 440px;
  height: 440px;
  transform: translate(-50%, -50%);
  z-index: 2;
  pointer-events: none;
}

.carousel-gold-frame svg {
  width: 100%;
  height: 100%;
  animation: rotateFrame 30s linear infinite;
  filter: drop-shadow(0 2px 5px rgba(0,0,0,0.06));
}

@keyframes rotateFrame {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 3rem;
  position: relative;
  z-index: 3;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: rgba(44, 42, 41, 0.2);
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
}

.dot.active {
  background-color: var(--color-accent);
  transform: scale(1.4);
}

/* Flèches de navigation */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(197, 168, 128, 0.4);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  color: #C5A880;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

.carousel-arrow:hover {
  background: #C5A880;
  color: #fff;
  border-color: #C5A880;
  transform: translateY(-50%) scale(1.08);
}

.carousel-arrow svg {
  width: 18px;
  height: 18px;
}

.carousel-arrow-left  { left: 12px; }
.carousel-arrow-right { right: 12px; }/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-a4eb935 *//* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,400&family=Montserrat:wght@200;300;400;500;600&display=swap');

:root {
  /* Color Palette */
  --color-primary: #1F1E1D;       /* Deep slate/charcoal */
  --color-accent: #C5A880;        /* Muted gold/brass */
  --color-accent-hover: #B3966E;  /* Darker gold for hovers */
  --color-bg-cream: #FAF6F0;      /* Warm premium cream */
  --color-text-dark: #2C2A29;     /* Deep body text color */
  --color-text-light: #FFFFFF;    /* Pure white for overlays */
  --color-text-muted: #6B6864;    /* Warm grey for captions */
  
  /* Glassmorphism Details */
  --glass-bg: rgba(255, 255, 255, 0.45);
  --glass-bg-hover: rgba(255, 255, 255, 0.65);
  --glass-border: rgba(255, 255, 255, 0.6);
  --glass-shadow: 0 30px 60px rgba(0, 0, 0, 0.05), 0 2px 10px rgba(0, 0, 0, 0.02);
  
  /* Fonts */
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Montserrat', sans-serif;
  
  /* Layout */
  --transition-smooth: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-fast: all 0.3s ease;
}

/* Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-bg-cream);
  color: var(--color-text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
/* ==========================================================================
   LATEST WORK CAROUSEL SECTION
   ========================================================================== */
.latest-work-section {
  position: relative;
  background-image: linear-gradient(rgba(250, 246, 240, 0.82), rgba(250, 246, 240, 0.82)), url('marble-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 2rem 0;
  overflow: hidden;
  text-align: center;
  z-index: 5;
}

.latest-work-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 12px;
  height: 100%;
  background: var(--color-accent);
  z-index: 2;
}

.gold-organic-blob-left {
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 260px;
  height: 260px;
  fill: rgba(197, 168, 128, 0.15);
  pointer-events: none;
  z-index: 1;
}

.gold-organic-blob-right {
  position: absolute;
  top: 5%;
  right: -80px;
  width: 320px;
  height: 320px;
  fill: rgba(197, 168, 128, 0.12);
  pointer-events: none;
  z-index: 1;
}

.section-title-wrapper {
  margin-bottom: 4rem;
  position: relative;
  z-index: 3;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 400;
  color: var(--color-primary);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-accent);
  font-weight: 500;
}

/* Active-Center Carousel Layout */
.carousel-container {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  height: 480px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3;
}

.carousel-slides {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ─── FIX : slides cachées complètement invisibles ─────────────────────── */
.carousel-slide {
  position: absolute;
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  /* Dimensions fixes pour éviter le rendu en taille naturelle */
  width: 320px;
  height: 400px;
  /* Entièrement cachées par défaut */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(0);
  z-index: 0;
  box-shadow: none;
}

/* Rendre visibles uniquement les 3 slides affichées */
.carousel-slide.prev,
.carousel-slide.next,
.carousel-slide.active {
  visibility: visible;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: var(--transition-smooth);
}

/* Slides latérales (précédente & suivante) */
.carousel-slide.prev,
.carousel-slide.next {
  width: 250px;
  height: 330px;
  opacity: 0.45;
  pointer-events: auto;
  cursor: pointer;
  z-index: 1;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.carousel-slide.prev {
  transform: translateX(-320px) scale(0.8);
}

.carousel-slide.next {
  transform: translateX(320px) scale(0.8);
}

.carousel-slide.prev:hover,
.carousel-slide.next:hover {
  opacity: 0.7;
}

/* Slide centrale active */
.carousel-slide.active {
  width: 320px;
  height: 400px;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0) scale(1.05);
  z-index: 3;
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.15);
}
/* ─────────────────────────────────────────────────────────────────────────── */

/* Cadre doré rotatif */
.carousel-gold-frame {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 440px;
  height: 440px;
  transform: translate(-50%, -50%);
  z-index: 2;
  pointer-events: none;
}

.carousel-gold-frame svg {
  width: 100%;
  height: 100%;
  animation: rotateFrame 30s linear infinite;
  filter: drop-shadow(0 2px 5px rgba(0,0,0,0.06));
}

@keyframes rotateFrame {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 3rem;
  position: relative;
  z-index: 3;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: rgba(44, 42, 41, 0.2);
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
}

.dot.active {
  background-color: var(--color-accent);
  transform: scale(1.4);
}

/* Flèches de navigation */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(197, 168, 128, 0.4);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  color: #C5A880;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

.carousel-arrow:hover {
  background: #C5A880;
  color: #fff;
  border-color: #C5A880;
  transform: translateY(-50%) scale(1.08);
}

.carousel-arrow svg {
  width: 18px;
  height: 18px;
}

.carousel-arrow-left  { left: 12px; }
.carousel-arrow-right { right: 12px; }/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-702c19a *//* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,400&family=Montserrat:wght@200;300;400;500;600&display=swap');

:root {
  /* Color Palette */
  --color-primary: #1F1E1D;       /* Deep slate/charcoal */
  --color-accent: #C5A880;        /* Muted gold/brass */
  --color-accent-hover: #B3966E;  /* Darker gold for hovers */
  --color-bg-cream: #FAF6F0;      /* Warm premium cream */
  --color-text-dark: #2C2A29;     /* Deep body text color */
  --color-text-light: #FFFFFF;    /* Pure white for overlays */
  --color-text-muted: #6B6864;    /* Warm grey for captions */
  
  /* Glassmorphism Details */
  --glass-bg: rgba(255, 255, 255, 0.45);
  --glass-bg-hover: rgba(255, 255, 255, 0.65);
  --glass-border: rgba(255, 255, 255, 0.6);
  --glass-shadow: 0 30px 60px rgba(0, 0, 0, 0.05), 0 2px 10px rgba(0, 0, 0, 0.02);
  
  /* Fonts */
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Montserrat', sans-serif;
  
  /* Layout */
  --transition-smooth: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-fast: all 0.3s ease;
}

/* Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-bg-cream);
  color: var(--color-text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
/* ==========================================================================
   LATEST WORK CAROUSEL SECTION
   ========================================================================== */
.latest-work-section {
  position: relative;
  background-image: linear-gradient(rgba(250, 246, 240, 0.82), rgba(250, 246, 240, 0.82)), url('marble-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 2rem 0;
  overflow: hidden;
  text-align: center;
  z-index: 5;
}

.latest-work-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 12px;
  height: 100%;
  background: var(--color-accent);
  z-index: 2;
}

.gold-organic-blob-left {
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 260px;
  height: 260px;
  fill: rgba(197, 168, 128, 0.15);
  pointer-events: none;
  z-index: 1;
}

.gold-organic-blob-right {
  position: absolute;
  top: 5%;
  right: -80px;
  width: 320px;
  height: 320px;
  fill: rgba(197, 168, 128, 0.12);
  pointer-events: none;
  z-index: 1;
}

.section-title-wrapper {
  margin-bottom: 4rem;
  position: relative;
  z-index: 3;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 400;
  color: var(--color-primary);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-accent);
  font-weight: 500;
}

/* Active-Center Carousel Layout */
.carousel-container {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  height: 480px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3;
}

.carousel-slides {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ─── FIX : slides cachées complètement invisibles ─────────────────────── */
.carousel-slide {
  position: absolute;
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  /* Dimensions fixes pour éviter le rendu en taille naturelle */
  width: 320px;
  height: 400px;
  /* Entièrement cachées par défaut */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(0);
  z-index: 0;
  box-shadow: none;
}

/* Rendre visibles uniquement les 3 slides affichées */
.carousel-slide.prev,
.carousel-slide.next,
.carousel-slide.active {
  visibility: visible;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: var(--transition-smooth);
}

/* Slides latérales (précédente & suivante) */
.carousel-slide.prev,
.carousel-slide.next {
  width: 250px;
  height: 330px;
  opacity: 0.45;
  pointer-events: auto;
  cursor: pointer;
  z-index: 1;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.carousel-slide.prev {
  transform: translateX(-320px) scale(0.8);
}

.carousel-slide.next {
  transform: translateX(320px) scale(0.8);
}

.carousel-slide.prev:hover,
.carousel-slide.next:hover {
  opacity: 0.7;
}

/* Slide centrale active */
.carousel-slide.active {
  width: 320px;
  height: 400px;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0) scale(1.05);
  z-index: 3;
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.15);
}
/* ─────────────────────────────────────────────────────────────────────────── */

/* Cadre doré rotatif */
.carousel-gold-frame {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 440px;
  height: 440px;
  transform: translate(-50%, -50%);
  z-index: 2;
  pointer-events: none;
}

.carousel-gold-frame svg {
  width: 100%;
  height: 100%;
  animation: rotateFrame 30s linear infinite;
  filter: drop-shadow(0 2px 5px rgba(0,0,0,0.06));
}

@keyframes rotateFrame {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 3rem;
  position: relative;
  z-index: 3;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: rgba(44, 42, 41, 0.2);
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
}

.dot.active {
  background-color: var(--color-accent);
  transform: scale(1.4);
}

/* Flèches de navigation */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(197, 168, 128, 0.4);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  color: #C5A880;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

.carousel-arrow:hover {
  background: #C5A880;
  color: #fff;
  border-color: #C5A880;
  transform: translateY(-50%) scale(1.08);
}

.carousel-arrow svg {
  width: 18px;
  height: 18px;
}

.carousel-arrow-left  { left: 12px; }
.carousel-arrow-right { right: 12px; }/* End custom CSS */