/* ============================================
   FANNY CONUS – ARTISTE PEINTRE
   Design: Turquoise → Blanc avec coulures
   ============================================ */

/* ============ SIGNATURE INTRO ============ */
#signature-intro {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: linear-gradient(135deg, var(--turquoise-dark) 0%, var(--turquoise) 60%, var(--turquoise-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
#signature-intro.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.sig-content {
  text-align: center;
  color: white;
  padding: 40px;
}
.sig-line-top, .sig-line-bottom {
  width: 0;
  height: 1px;
  background: rgba(255,255,255,0.4);
  margin: 20px auto;
  transition: width 1s ease;
}
.sig-content.animate .sig-line-top,
.sig-content.animate .sig-line-bottom { width: 200px; }

.sig-image-wrap {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s ease 0.4s, transform 0.9s ease 0.4s;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sig-content.animate .sig-image-wrap {
  opacity: 1;
  transform: translateY(0);
}
#sig-img {
  max-width: min(400px, 80vw);
  max-height: 160px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.sig-subtitle {
  opacity: 0;
  font-size: 0.85rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: opacity 0.8s ease 1s;
  margin-top: 10px;
}
.sig-content.animate .sig-subtitle { opacity: 1; }

/* ============ WHATSAPP BANNER ============ */
.whatsapp-banner {
  background: #25D366;
  padding: 16px 30px;
}
.wa-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.wa-text { color: white; font-size: 0.92rem; }
.wa-text strong { font-weight: 700; margin-right: 8px; }
.wa-text span { opacity: 0.9; }
.wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  color: #128C7E;
  padding: 10px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
  transition: all 0.2s;
  flex-shrink: 0;
}
.wa-btn:hover { background: #f0fff0; transform: translateY(-2px); box-shadow: 0 5px 15px rgba(0,0,0,0.15); }
@media (max-width: 600px) {
  .whatsapp-banner { padding: 14px 20px; }
  .wa-inner { justify-content: center; text-align: center; }
  .wa-text span { display: none; }
}

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

:root {
  --turquoise: #00B4C8;
  --turquoise-dark: #007A8A;
  --turquoise-light: #E0F7FA;
  --turquoise-mid: #4DD0E1;
  --white: #FFFFFF;
  --off-white: #F8FFFE;
  --text-dark: #1a3a3f;
  --text-mid: #2d6a72;
  --gold: #C9A84C;
  --shadow: rgba(0, 123, 138, 0.15);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Raleway', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

/* ============ PAINT DRIP SVG ============ */
.paint-drip-top {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.paint-drip-top svg { display: block; width: 100%; }

/* ============ NAVIGATION ============ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 16px 0;
}
#navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 30px var(--shadow);
  padding: 10px 0;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img {
  height: 55px;
  transition: height 0.3s;
}
#navbar.scrolled .nav-logo img { height: 42px; }
.nav-logo .logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--white);
  transition: color 0.3s;
  text-decoration: none;
  letter-spacing: 1px;
}
#navbar.scrolled .nav-logo .logo-text { color: var(--turquoise-dark); }

.nav-links {
  display: flex;
  list-style: none;
  gap: 8px;
  align-items: center;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
  text-decoration: none;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 25px;
  transition: all 0.3s;
}
#navbar.scrolled .nav-links > li > a { color: var(--text-mid); }
.nav-links > li > a:hover,
.nav-links > li > a.active {
  background: rgba(255,255,255,0.2);
  color: var(--white);
}
#navbar.scrolled .nav-links > li > a:hover,
#navbar.scrolled .nav-links > li > a.active {
  background: var(--turquoise-light);
  color: var(--turquoise-dark);
}

/* Dropdown */
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
  min-width: 230px;
  overflow: hidden;
  border-top: 3px solid var(--turquoise);
}
.nav-links > li:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  text-decoration: none;
  color: var(--text-dark);
  font-size: 0.88rem;
  transition: all 0.2s;
  border-bottom: 1px solid rgba(0,180,200,0.08);
}
.dropdown-menu a:last-child { border-bottom: none; }
.dropdown-menu a:hover { background: var(--turquoise-light); color: var(--turquoise-dark); padding-left: 28px; }

.nav-cta {
  background: var(--gold) !important;
  color: white !important;
  border-radius: 25px;
  padding: 10px 22px !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px;
}
.nav-cta:hover { background: #b8943e !important; transform: translateY(-1px); }

/* Hamburger */
.hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.hamburger span { display: block; width: 25px; height: 2px; background: white; transition: all 0.3s; border-radius: 2px; }
#navbar.scrolled .hamburger span { background: var(--turquoise-dark); }

/* ============ HERO SLIDESHOW ============ */
#hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #004a56;
}

/* Slides en fond */
#hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hslide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease;
  /* Effet Ken Burns : léger zoom lent */
  animation: kenBurns 8s ease-in-out infinite alternate;
}
.hslide.active {
  opacity: 1;
  z-index: 1;
}
.hslide.leaving {
  opacity: 0;
  z-index: 0;
}
@keyframes kenBurns {
  0%   { transform: scale(1)    translate(0, 0); }
  50%  { transform: scale(1.06) translate(-1%, 0.5%); }
  100% { transform: scale(1.04) translate(1%, -0.5%); }
}

/* Overlay dégradé */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(
      to bottom,
      rgba(0,50,65,0.55) 0%,
      rgba(0,80,95,0.45) 40%,
      rgba(0,50,65,0.70) 100%
    );
}

/* Dots indicateurs */
#hero-dots {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 8px;
}
.hdot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  padding: 0;
  transition: all 0.3s;
}
.hdot.active {
  background: white;
  width: 22px;
  border-radius: 4px;
}

/* Label tableau en cours */
#hero-slide-label {
  position: absolute;
  bottom: 75px;
  right: 40px;
  z-index: 10;
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: flex;
  gap: 12px;
  align-items: center;
}
#hslide-name {
  font-style: italic;
  color: rgba(255,255,255,0.8);
  font-family: 'Playfair Display', serif;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}
#hslide-num {
  opacity: 0.5;
  font-size: 0.7rem;
}

.hero-bg-pattern { display: none; }

/* Contenu au dessus de l'overlay */
.hero-content { position: relative; z-index: 5; }
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 30px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-text { color: white; }
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.82);
  padding: 0;
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.hero-tag::before,
.hero-tag::after {
  content: '';
  width: 26px;
  height: 1px;
  background: rgba(255,255,255,0.4);
}
.hero-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5.5vw, 4.6rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 30px;
  text-shadow: 0 4px 40px rgba(0,0,0,0.28);
}
.hero-text h1 em {
  font-style: italic;
  font-weight: 400;
  color: rgba(255,255,255,0.92);
}
.hero-text p {
  font-size: 1rem;
  line-height: 1.9;
  font-weight: 300;
  opacity: 0.8;
  margin: 0 auto 40px;
  max-width: 430px;
}
.hero-buttons { display: flex; gap: 15px; flex-wrap: wrap; }
.btn-primary {
  background: white;
  color: var(--turquoise-dark);
  padding: 14px 32px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: all 0.3s;
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
.btn-secondary {
  background: transparent;
  color: white;
  padding: 14px 32px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  border: 2px solid rgba(255,255,255,0.6);
  transition: all 0.3s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.15); border-color: white; }

.hero-stats {
  display: flex;
  gap: 44px;
  margin-top: 42px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.16);
}
.stat { text-align: center; }
.stat .number {
  font-family: 'Playfair Display', serif;
  font-size: 1.65rem;
  font-weight: 500;
  color: white;
  display: block;
}
.stat .label { font-size: 0.68rem; opacity: 0.62; letter-spacing: 1.5px; text-transform: uppercase; margin-top: 2px; }

.hero-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
  transform: rotate(2deg);
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.25));
}
.hero-gallery .img-card {
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255,255,255,0.1);
  aspect-ratio: 1;
}
.hero-gallery .img-card:first-child {
  grid-column: 1 / 3;
  aspect-ratio: 2/1;
}
.hero-gallery .img-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s;
}
.hero-gallery .img-card:hover img { transform: scale(1.05); }
.hero-gallery .img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0.05));
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); font-size: 0.75rem; text-align: center; padding: 10px;
}

/* Paint drip bottom hero */
.hero-drip {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  z-index: 3;
}
.hero-drip svg { display: block; width: 100%; }

/* ============ SECTIONS GENERIQUES ============ */
.section-header {
  text-align: center;
  margin-bottom: 55px;
}
.section-tag {
  display: inline-block;
  color: var(--turquoise);
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 12px;
}
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--text-dark);
  margin-bottom: 15px;
}
.section-header p {
  color: var(--text-mid);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}
.divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--turquoise), var(--turquoise-mid));
  margin: 15px auto 0;
  border-radius: 2px;
}

/* ============ FEATURED WORKS ============ */
#featured {
  padding: 90px 30px;
  max-width: 1200px;
  margin: 0 auto;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
}
.art-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}
.art-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 45px rgba(0,123,138,0.2);
}
.art-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--turquoise-light);
}
.art-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.art-card:hover .art-card-img img { transform: scale(1.08); }
.art-card-img .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,90,100,0.7), transparent 50%);
  opacity: 0; transition: opacity 0.3s;
  display: flex; align-items: flex-end; padding: 20px;
}
.art-card:hover .overlay { opacity: 1; }
.overlay-actions { display: flex; gap: 10px; }
.btn-overlay {
  background: white;
  color: var(--turquoise-dark);
  border: none; padding: 8px 16px;
  border-radius: 20px; font-size: 0.8rem;
  font-weight: 600; cursor: pointer;
  transition: all 0.2s; font-family: 'Raleway', sans-serif;
}
.btn-overlay:hover { background: var(--turquoise); color: white; }
.badge {
  position: absolute; top: 12px; left: 12px;
  padding: 4px 12px; border-radius: 20px;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.5px; text-transform: uppercase;
}
.badge-new { background: var(--turquoise); color: white; }
.badge-sold { background: #666; color: white; }
.badge-reserved { background: var(--gold); color: white; }
.badge-given { background: #9c6baf; color: white; }
.art-card-info { padding: 18px 20px 20px; }
.art-card-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  margin-bottom: 6px;
  color: var(--text-dark);
}
.art-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}
.art-dims { font-size: 0.78rem; color: #999; }
.art-price { font-weight: 700; color: var(--turquoise-dark); font-size: 1rem; }
.art-technique { font-size: 0.8rem; color: var(--text-mid); margin-top: 4px; }

/* placeholder for missing images */
.img-placeholder-card {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #e0f7fa 0%, #b2ebf2 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px; color: var(--turquoise-dark);
}
.img-placeholder-card svg { opacity: 0.4; }
.img-placeholder-card span { font-size: 0.75rem; opacity: 0.5; }

/* ============ CATEGORIES BANNER ============ */
#categories {
  background: linear-gradient(135deg, var(--turquoise-dark), var(--turquoise));
  padding: 70px 30px;
  position: relative;
  overflow: hidden;
}
#categories::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.categories-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.cat-card {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 16px;
  padding: 30px 25px;
  text-align: center;
  text-decoration: none;
  color: white;
  transition: all 0.3s;
}
.cat-card:hover {
  background: rgba(255,255,255,0.22);
  transform: translateY(-5px);
  border-color: rgba(255,255,255,0.4);
}
.cat-icon { font-size: 2.5rem; margin-bottom: 15px; display: block; }
.cat-card h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; margin-bottom: 8px; }
.cat-card p { font-size: 0.82rem; opacity: 0.75; line-height: 1.5; }

/* ============ ABOUT PREVIEW ============ */
#about-preview {
  padding: 90px 30px;
  background: var(--off-white);
}
.about-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.about-img-stack { position: relative; }
.about-img-main {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,123,138,0.2);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: linear-gradient(135deg, var(--turquoise), var(--turquoise-mid));
  color: white;
  padding: 20px 25px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,123,138,0.3);
  text-align: center;
}
.about-img-badge .big { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; display: block; }
.about-img-badge .small { font-size: 0.75rem; opacity: 0.85; letter-spacing: 1px; }
.about-text .section-tag { text-align: left; display: block; }
.about-text h2 { text-align: left; font-family: 'Playfair Display', serif; font-size: 2.2rem; margin-bottom: 20px; }
.about-text p { color: var(--text-mid); line-height: 1.8; margin-bottom: 18px; }
.about-quote {
  background: white;
  border-left: 4px solid var(--turquoise);
  padding: 20px 24px;
  border-radius: 0 12px 12px 0;
  margin: 25px 0;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-dark);
}

/* ============ EXPOSITIONS ============ */
#exhibitions-preview {
  padding: 90px 30px;
  max-width: 1200px;
  margin: 0 auto;
}
.timeline {
  position: relative;
  padding: 20px 0;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--turquoise), var(--turquoise-light));
  transform: translateX(-50%);
}
.timeline-item {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 30px;
  align-items: start;
  margin-bottom: 40px;
}
.timeline-item:nth-child(odd) .timeline-content { grid-column: 1; text-align: right; }
.timeline-item:nth-child(odd) .timeline-empty { grid-column: 3; }
.timeline-item:nth-child(even) .timeline-content { grid-column: 3; }
.timeline-item:nth-child(even) .timeline-empty { grid-column: 1; }
.timeline-dot {
  width: 14px; height: 14px;
  background: var(--turquoise);
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 0 0 3px var(--turquoise-mid);
  margin-top: 5px;
  flex-shrink: 0;
}
.timeline-content {
  background: white;
  border-radius: 12px;
  padding: 20px 24px;
  box-shadow: 0 4px 20px var(--shadow);
  transition: box-shadow 0.3s;
}
.timeline-content:hover { box-shadow: 0 8px 35px rgba(0,123,138,0.15); }
.timeline-year {
  color: var(--turquoise);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  margin-bottom: 5px;
}
.timeline-content h3 { font-family: 'Playfair Display', serif; font-size: 1rem; margin-bottom: 5px; }
.timeline-content p { font-size: 0.82rem; color: var(--text-mid); line-height: 1.5; }

/* ============ HOME STAGING ============ */
#home-staging-preview {
  background: linear-gradient(180deg, var(--off-white) 0%, white 100%);
  padding: 90px 30px;
}
.staging-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.staging-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px var(--shadow);
  transition: transform 0.3s;
}
.staging-card:hover { transform: translateY(-5px); }
.staging-card-header {
  background: linear-gradient(135deg, var(--turquoise-dark), var(--turquoise));
  padding: 35px 30px;
  color: white;
}
.staging-card-header h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; margin-bottom: 8px; }
.staging-card-header p { opacity: 0.85; font-size: 0.9rem; line-height: 1.6; }
.staging-card-body { background: white; padding: 25px 30px; }
.staging-card-body ul { list-style: none; }
.staging-card-body li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,180,200,0.08);
  display: flex; align-items: center; gap: 12px;
  font-size: 0.9rem; color: var(--text-mid);
}
.staging-card-body li::before {
  content: '✓';
  color: var(--turquoise);
  font-weight: 700;
  flex-shrink: 0;
}
.staging-card-body .btn-staging {
  display: inline-block;
  margin-top: 20px;
  background: var(--turquoise);
  color: white;
  padding: 12px 26px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s;
}
.staging-card-body .btn-staging:hover { background: var(--turquoise-dark); transform: translateY(-2px); }

/* ============ COMMANDE SUR MESURE ============ */
#custom-order {
  background: linear-gradient(135deg, var(--turquoise-dark) 0%, var(--turquoise) 60%, var(--turquoise-mid) 100%);
  padding: 90px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#custom-order::before {
  content: '';
  position: absolute; top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 60%);
}
#custom-order h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: white;
  margin-bottom: 15px;
  position: relative;
}
#custom-order h2 em { font-style: italic; color: rgba(255,255,255,0.8); }
#custom-order p { color: rgba(255,255,255,0.85); max-width: 600px; margin: 0 auto 35px; line-height: 1.7; font-size: 1rem; }
.custom-steps {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin: 40px 0;
  position: relative;
}
.custom-step {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 16px;
  padding: 25px 22px;
  width: 180px;
  color: white;
  text-align: center;
}
.step-num {
  width: 36px; height: 36px;
  background: white;
  color: var(--turquoise-dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.9rem;
  margin: 0 auto 12px;
}
.custom-step h4 { font-size: 0.9rem; font-weight: 600; margin-bottom: 6px; }
.custom-step p { font-size: 0.78rem; opacity: 0.75; }
.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: white;
  padding: 15px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.5px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.2);
  transition: all 0.3s;
  position: relative;
}
.btn-gold:hover { background: #b8943e; transform: translateY(-3px); box-shadow: 0 10px 35px rgba(0,0,0,0.25); }

/* ============ LIVRAISON SUISSE ============ */
.delivery-banner {
  background: var(--turquoise-light);
  padding: 20px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--turquoise-dark);
  font-weight: 600;
  letter-spacing: 0.5px;
}
.delivery-banner span { margin: 0 15px; }

/* ============ FOOTER ============ */
footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 30px 30px;
}
.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: white;
  margin-bottom: 15px;
}
.footer-desc { font-size: 0.88rem; line-height: 1.7; margin-bottom: 20px; }
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; text-decoration: none;
  transition: all 0.3s;
  font-size: 0.9rem;
}
.social-link:hover { background: var(--turquoise); transform: translateY(-2px); }
.footer-col h4 { color: white; font-size: 0.85rem; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--turquoise-mid); }
.footer-contact p { font-size: 0.88rem; margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.footer-contact svg { flex-shrink: 0; opacity: 0.6; }
.footer-bottom {
  max-width: 1100px; margin: 0 auto;
  padding-top: 25px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.8rem;
}
.swiss-badge {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.5);
}

/* ============ MODAL ============ */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(5px);
}
.modal-overlay.active { display: flex; }
.modal-content {
  background: white;
  border-radius: 20px;
  max-width: 900px; width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.modal-img {
  background: var(--turquoise-light);
  border-radius: 20px 0 0 20px;
  overflow: hidden;
}
.modal-img img { width: 100%; height: 100%; object-fit: cover; }
.modal-info { padding: 40px 35px; }
.modal-close {
  position: absolute; top: 20px; right: 20px;
  background: white;
  border: none; border-radius: 50%;
  width: 36px; height: 36px;
  cursor: pointer; font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 3px 15px rgba(0,0,0,0.2);
}

/* ============ PANIER ============ */
.cart-btn {
  position: relative;
  background: transparent;
  border: none;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer; text-decoration: none;
  color: rgba(255,255,255,0.9);
  transition: all 0.3s;
}
.cart-btn:hover { background: rgba(255,255,255,0.2); color: white; }
.cart-count {
  background: var(--gold);
  color: white; border-radius: 10px;
  min-width: 16px; height: 16px; padding: 0 5px;
  font-size: 0.62rem; font-weight: 700;
  align-items: center; justify-content: center;
  display: none;
}
.cart-count.visible { display: inline-flex; }

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-gallery { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-stack { display: none; }
  .timeline::before { left: 20px; }
  .timeline-item { grid-template-columns: auto 1fr; }
  .timeline-item .timeline-empty { display: none; }
  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content { grid-column: 2; text-align: left; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .modal-content { grid-template-columns: 1fr; }
  .staging-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,90,100,0.97);
    justify-content: center; align-items: center;
    gap: 15px; z-index: 999;
  }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .custom-steps { gap: 15px; }
  .custom-step { width: 150px; }
}

/* ============ ANIMATIONS ============ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ============ PAGES INTERNES ============ */
.page-hero {
  background: linear-gradient(135deg, var(--turquoise-dark), var(--turquoise));
  padding: 140px 30px 80px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3.5rem); margin-bottom: 15px; }
.page-hero p { opacity: 0.85; max-width: 600px; margin: 0 auto; font-size: 1rem; line-height: 1.7; }
.breadcrumb {
  font-size: 0.8rem; opacity: 0.7;
  margin-bottom: 20px; display: flex;
  justify-content: center; gap: 8px;
}
.breadcrumb a { color: white; text-decoration: none; }
.breadcrumb a:hover { opacity: 1; }

/* ============ FILTRES GALERIE ============ */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 8px 22px;
  border-radius: 25px;
  border: 2px solid var(--turquoise-light);
  background: white;
  color: var(--text-mid);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Raleway', sans-serif;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--turquoise);
  color: white;
  border-color: var(--turquoise);
}

/* ============ FORMULAIRE CONTACT ============ */
.contact-form { max-width: 600px; margin: 0 auto; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 7px; font-size: 0.85rem; font-weight: 600; color: var(--text-dark); }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 18px;
  border: 2px solid rgba(0,180,200,0.15);
  border-radius: 10px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  transition: border-color 0.2s;
  background: white;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--turquoise);
  box-shadow: 0 0 0 3px rgba(0,180,200,0.1);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.btn-submit {
  background: linear-gradient(135deg, var(--turquoise-dark), var(--turquoise));
  color: white;
  border: none;
  padding: 14px 40px;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Raleway', sans-serif;
  letter-spacing: 0.5px;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,123,138,0.3); }

/* ============ NOTIFICATION TOAST ============ */
.toast {
  position: fixed; bottom: 30px; right: 30px;
  background: var(--turquoise-dark);
  color: white;
  padding: 15px 25px;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.2);
  font-size: 0.9rem;
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.toast.show { transform: translateY(0); opacity: 1; }

/* Smooth page loading */
.page-loader {
  position: fixed; inset: 0;
  background: linear-gradient(135deg, var(--turquoise-dark), var(--turquoise));
  z-index: 99999;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.5s, visibility 0.5s;
}
.page-loader.hidden { opacity: 0; visibility: hidden; }
.loader-art {
  text-align: center; color: white;
}
.loader-art .name { font-family: 'Playfair Display', serif; font-size: 2rem; margin-top: 15px; }
.loader-dot {
  display: inline-block; width: 12px; height: 12px;
  background: white; border-radius: 50%; margin: 0 5px;
  animation: loadBounce 1.4s infinite ease-in-out;
}
.loader-dot:nth-child(2) { animation-delay: 0.2s; }
.loader-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes loadBounce {
  0%, 80%, 100% { transform: scale(0.6); opacity: 0.3; }
  40% { transform: scale(1); opacity: 1; }
}

/* ============ GALERIE DÉFILANTE ============ */
#gallery-reel {
  padding: 80px 0 70px;
  background: var(--off-white);
  overflow: hidden;
}
#gallery-reel .reel-header {
  text-align: center;
  padding: 0 30px;
  margin-bottom: 45px;
}
#gallery-reel .reel-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--text-dark);
  margin: 8px 0 12px;
}
#gallery-reel .reel-header p {
  color: var(--text-mid);
  font-size: 0.95rem;
}

/* Conteneur avec masques flous sur les bords */
.reel-track-wrap {
  position: relative;
  overflow: hidden;
}
.reel-track-wrap::before,
.reel-track-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.reel-track-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--off-white), transparent);
}
.reel-track-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--off-white), transparent);
}

/* La piste qui défile */
.reel-track {
  display: flex;
  gap: 14px;
  width: max-content;
  padding: 8px 0;
}
.reel-left  { animation: reelScrollLeft  40s linear infinite; }
.reel-right { animation: reelScrollRight 45s linear infinite; }

/* Pause au survol */
.reel-track-wrap:hover .reel-left,
.reel-track-wrap:hover .reel-right { animation-play-state: paused; }

@keyframes reelScrollLeft {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes reelScrollRight {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* Chaque carte image */
.reel-slide {
  position: relative;
  flex-shrink: 0;
  width: 240px;
  height: 200px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0,90,100,0.12);
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.reel-slide:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 14px 40px rgba(0,90,100,0.22);
  z-index: 3;
}
.reel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.reel-slide:hover img { transform: scale(1.08); }

/* Label au survol */
.reel-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,50,60,0.75));
  color: white;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 20px 12px 10px;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.3s, transform 0.3s;
  letter-spacing: 0.5px;
}
.reel-slide:hover .reel-label {
  opacity: 1;
  transform: translateY(0);
}

/* ===== CARTE OFFRE dans le carousel ===== */
.reel-offer {
  text-decoration: none;
  background: linear-gradient(145deg, var(--turquoise-dark) 0%, var(--turquoise) 60%, var(--turquoise-mid) 100%);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.reel-offer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(255,255,255,0.12), transparent 60%);
}
.reel-offer-gold {
  background: linear-gradient(145deg, #8B6914 0%, #C9A84C 55%, #e8c96a 100%);
}
.reel-offer-inner {
  position: relative;
  z-index: 1;
  height: 100%;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: white;
}
.reel-offer-tag {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 20px;
  padding: 3px 10px;
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  align-self: flex-start;
}
.reel-offer-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  line-height: 1.25;
  font-weight: 700;
  margin: 8px 0 4px;
}
.reel-offer-sub {
  font-size: 0.72rem;
  opacity: 0.85;
  line-height: 1.4;
}
.reel-offer-cta {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 20px;
  padding: 7px 14px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  align-self: flex-start;
  transition: background 0.2s, transform 0.2s;
}
.reel-offer:hover .reel-offer-cta {
  background: rgba(255,255,255,0.35);
  transform: translateX(3px);
}
/* Pas d'effet de zoom image sur les cartes offre */
.reel-offer:hover { transform: translateY(-6px) scale(1.03); }
.reel-offer .reel-label { display: none; }

/* Mobile : cartes plus petites, une seule rangée suffit */
@media (max-width: 768px) {
  #gallery-reel { padding: 55px 0 50px; }
  #gallery-reel .reel-header { padding: 0 20px; margin-bottom: 30px; }
  .reel-slide { width: 170px; height: 140px; border-radius: 12px; }
  .reel-track { gap: 10px; }
  .reel-track-wrap::before,
  .reel-track-wrap::after { width: 50px; }
  .reel-left  { animation-duration: 28s; }
  .reel-right { animation-duration: 32s; }
}

/* ============ BOUTON NÉGOCIER + DESIGN ÉPURÉ ============ */

/* Bouton WhatsApp sur fiche produit */
.btn-nego {
  display: block;
  margin-top: 12px;
  background: #25D366;
  color: white;
  text-align: center;
  padding: 10px 16px;
  border-radius: 25px;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: all 0.25s;
  border: none;
}
.btn-nego:hover {
  background: #1ebe5a;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(37,211,102,0.35);
}

/* Art card : un peu plus de hauteur pour le CTA */
.art-card-info { padding: 18px 20px 16px; }

/* Hero overlay plus sombre pour meilleure lisibilité */
.hero-overlay {
  background:
    linear-gradient(
      to bottom,
      rgba(0,30,40,0.65) 0%,
      rgba(0,60,75,0.50) 40%,
      rgba(0,20,30,0.80) 100%
    ) !important;
}

/* Hero content centré */
.hero-content {
  grid-template-columns: 1fr !important;
  justify-items: center !important;
  text-align: center !important;
  max-width: 860px !important;
  margin: 0 auto !important;
}
.hero-text { max-width: 660px; }
.hero-text p {
  font-size: 1.1rem !important;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}
.hero-text h1 {
  font-size: clamp(3.2rem, 6vw, 5rem) !important;
  text-shadow: 0 2px 30px rgba(0,0,0,0.45) !important;
  line-height: 1.1 !important;
}
.hero-buttons { justify-content: center !important; }
.hero-stats   { justify-content: center !important; }
.hero-gallery { display: none !important; }

/* Featured section plus sobre */
#featured { background: white; }
#featured .section-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
}

/* Gallery reel fond légèrement différent */
#gallery-reel { background: #f4fafa; }

/* ===== HOME STAGING VISUEL ===== */
@media (max-width: 768px) {
  #home-staging-preview > div > div {
    grid-template-columns: 1fr !important;
    padding: 50px 20px !important;
    gap: 40px !important;
  }
  .staging-visual { display: none; }
}

/* ===== PAGE-HERO AVEC IMAGE DE FOND ===== */
.page-hero[style*="background-image"] {
  position: relative;
  padding-top: 160px;
  padding-bottom: 90px;
  min-height: 340px;
}
/* Texte toujours lisible */
.page-hero[style*="background-image"] h1,
.page-hero[style*="background-image"] p,
.page-hero[style*="background-image"] .breadcrumb a,
.page-hero[style*="background-image"] .breadcrumb span {
  text-shadow: 0 1px 12px rgba(0,0,0,0.5);
}
/* Breadcrumb séparateur */
.breadcrumb span + span::before { content: ' '; }

/* ===== LOGO ANIMÉ — Écriture lettre par lettre ===== */
.logo-animated {
  font-family: 'Playfair Display', serif !important;
  font-style: italic;
  font-size: 1.6rem;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  position: relative;
  /* Couleur par défaut : blanc (sur fond sombre/peinture) */
  color: white;
}

/* Sur fond blanc (navbar scrollée ou page À Propos) */
#navbar.scrolled .logo-animated,
.navbar-dark .logo-animated { color: var(--turquoise-dark); }

.logo-char, .logo-space {
  display: inline-block;
  opacity: 0;
  transform: translateY(10px) rotate(-4deg);
  animation: logoLetterIn 0.45s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.logo-space { width: 0.32em; }

.logo-char:nth-child(1)  { animation-delay: 0.08s; }
.logo-char:nth-child(2)  { animation-delay: 0.16s; }
.logo-char:nth-child(3)  { animation-delay: 0.24s; }
.logo-char:nth-child(4)  { animation-delay: 0.32s; }
.logo-char:nth-child(5)  { animation-delay: 0.40s; }
.logo-space:nth-child(6) { animation-delay: 0.46s; }
.logo-char:nth-child(7)  { animation-delay: 0.52s; }
.logo-char:nth-child(8)  { animation-delay: 0.60s; }
.logo-char:nth-child(9)  { animation-delay: 0.68s; }
.logo-char:nth-child(10) { animation-delay: 0.76s; }
.logo-char:nth-child(11) { animation-delay: 0.84s; }

@keyframes logoLetterIn {
  0%   { opacity: 0; transform: translateY(12px) rotate(-5deg); }
  55%  { opacity: 1; transform: translateY(-2px) rotate(0.8deg); }
  100% { opacity: 1; transform: translateY(0) rotate(0deg); }
}

/* Soulignement qui se trace après les lettres */
.logo-animated::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  height: 1px;
  width: 0;
  background: currentColor;
  opacity: 0.45;
  animation: logoUnderline 0.5s ease 1s forwards;
}
@keyframes logoUnderline { to { width: 100%; } }

/* Adaptation page À Propos (fond blanc en haut) */
.page-white-top #navbar:not(.scrolled) .logo-animated { color: var(--turquoise-dark); }
.page-white-top #navbar:not(.scrolled) .hamburger span { background: var(--turquoise-dark); }
.page-white-top #navbar:not(.scrolled) .nav-links > li > a { color: var(--text-mid); }
.page-white-top #navbar:not(.scrolled) .nav-cta {
  background: var(--turquoise-dark) !important;
  color: white !important;
}

/* ===== HOME STAGING — Simulation intérieur ===== */
.staging-room {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 50px;
  align-items: center;
}

/* Mur simulé */
.staging-wall {
  position: relative;
  background: linear-gradient(180deg, #f5f0eb 0%, #ede8e2 70%, #d4cec8 100%);
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}
.staging-wall-texture {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent, transparent 80px,
    rgba(0,0,0,0.015) 80px, rgba(0,0,0,0.015) 82px
  );
}

/* Sol */
.staging-floor {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 22%;
  background: linear-gradient(180deg, #c8b89a 0%, #b8a88a 100%);
  border-top: 2px solid rgba(0,0,0,0.08);
}

/* Console/meuble */
.staging-console {
  position: absolute;
  bottom: 22%;
  left: 50%;
  transform: translateX(-50%);
  width: 38%;
  height: 8%;
  background: linear-gradient(180deg, #8B7355 0%, #6B5335 100%);
  border-radius: 3px 3px 0 0;
}
.staging-console-top {
  height: 10%;
  background: #9B8365;
  border-radius: 3px 3px 0 0;
  box-shadow: 0 -2px 0 rgba(255,255,255,0.15);
}

/* Cadres tableaux */
.staging-frame {
  position: absolute;
  background: #2a2320;
  border-radius: 3px;
  padding: 6px;
  box-shadow:
    0 8px 25px rgba(0,0,0,0.25),
    inset 0 0 0 1px rgba(255,255,255,0.08);
}
.staging-frame-inner {
  overflow: hidden;
  background: #ddd;
}
.staging-frame-inner img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* Tableau principal — centré, grand */
.staging-frame-main {
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 46%;
  height: 50%;
}
.staging-frame-main .staging-frame-inner { height: 100%; }

/* Tableaux latéraux */
.staging-frame-side {
  top: 14%;
  width: 18%;
  height: 30%;
}
.staging-frame-side .staging-frame-inner { height: 100%; }
.staging-frame-left  { left: 8%; }
.staging-frame-right { right: 8%; }

/* Label prix sous chaque tableau */
.staging-frame-label {
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 0.65rem;
  color: var(--text-mid);
  letter-spacing: 0.3px;
  opacity: 0.75;
}

/* Responsive */
@media (max-width: 900px) {
  .staging-room {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .staging-info { order: -1; }
}

/* ============================================================
   ENHANCEMENTS — Design plus dynamique et professionnel
   ============================================================ */

/* ---- SHIMMER sur les boutons principaux ---- */
.btn-primary, .btn-gold, .btn-submit, .btn-add-cart {
  position: relative;
  overflow: hidden;
}
.btn-primary::after, .btn-gold::after, .btn-submit::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transition: left 0.5s ease;
  pointer-events: none;
}
.btn-primary:hover::after, .btn-gold:hover::after, .btn-submit:hover::after {
  left: 140%;
}

/* ---- ART CARD — effet 3D au survol ---- */
.art-card {
  transform-style: preserve-3d;
  perspective: 800px;
  will-change: transform;
}
.art-card:hover {
  transform: translateY(-10px) scale(1.015);
  box-shadow: 0 20px 55px rgba(0,123,138,0.22);
}
.art-card-img img {
  transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
}
.art-card:hover .art-card-img img { transform: scale(1.1); }

/* Indicateur "voir la fiche" sur l'overlay */
.overlay-actions .btn-overlay {
  backdrop-filter: blur(8px);
  background: rgba(255,255,255,0.92);
}

/* ---- SECTION TAG — trait animé ---- */
.section-tag {
  position: relative;
  display: inline-block;
}

/* ---- GALLERY GRID — espacement amélioré ---- */
.gallery-grid {
  gap: 28px;
}

/* ---- FILTER BUTTONS — plus prononcés ---- */
.filter-btn {
  transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
  font-weight: 600;
}
.filter-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0,123,138,0.15);
}
.filter-btn.active {
  box-shadow: 0 4px 16px rgba(0,180,200,0.3);
}

/* ---- NAVBAR CART — blanc quand scrollé ---- */
#navbar.scrolled .cart-btn {
  background: transparent;
  color: var(--turquoise-dark);
}
#navbar.scrolled .cart-btn:hover {
  background: var(--turquoise-light);
  color: var(--turquoise-dark);
}

/* ---- DELIVERY BANNER — animée ---- */
.delivery-banner {
  background: linear-gradient(90deg, var(--turquoise-light) 0%, #d0f0f4 50%, var(--turquoise-light) 100%);
  background-size: 200% auto;
  animation: bannerShine 6s linear infinite;
  font-weight: 700;
  letter-spacing: 0.3px;
}
@keyframes bannerShine {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* ---- TIMELINE — dot pulsant ---- */
.timeline-dot {
  animation: dotPulse 2.5s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 3px var(--turquoise-mid); }
  50%       { box-shadow: 0 0 0 6px rgba(0,180,200,0.2); }
}

/* ---- HERO STATS — compteur visuel ---- */
.stat .number {
  font-size: 2.2rem;
  letter-spacing: -1px;
}

/* ---- ART CARD PRICE — mise en valeur ---- */
.art-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--turquoise-dark);
  font-weight: 700;
}

/* ---- PAGE HERO — hauteur plus impactante ---- */
.page-hero[style*="background-image"] {
  min-height: 380px;
}

/* ---- CAT CARDS — survol plus spectaculaire ---- */
.cat-card {
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.cat-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(255,255,255,0.5);
  box-shadow: 0 16px 40px rgba(0,0,0,0.15);
}

/* ---- ABOUT QUOTE — accentuée ---- */
.about-quote {
  border-left-width: 5px;
  background: linear-gradient(135deg, white 0%, #f4fffe 100%);
}

/* ---- CUSTOM STEPS — trait entre les étapes ---- */
.custom-steps {
  position: relative;
}
.custom-steps::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 5%;
  right: 5%;
  height: 1px;
  background: rgba(255,255,255,0.15);
  transform: translateY(-50%);
}

/* ---- BADGE — plus visible ---- */
.badge {
  letter-spacing: 1px;
  font-size: 0.68rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.badge-new {
  background: linear-gradient(135deg, #00b4c8, #007a8a);
}

/* ---- FOOTER — légère profondeur ---- */
footer {
  background: linear-gradient(180deg, #162830 0%, var(--text-dark) 100%);
}

/* ---- SCROLL INDICATOR ---- */
@keyframes fadeInUp {
  from { opacity:0; transform:translateY(40px); }
  to   { opacity:1; transform:translateY(0); }
}
.fade-in.visible {
  animation: fadeInUp 0.6s ease both;
}

/* ---- MOBILE NAV amélioré ---- */
@media (max-width: 600px) {
  .nav-links.open {
    background: rgba(0,40,55,0.98);
    backdrop-filter: blur(16px);
    gap: 8px;
    padding: 20px;
  }
  .nav-links.open > li > a {
    color: white !important;
    font-size: 1rem;
    padding: 12px 20px;
  }
}

/* ---- NAVBAR SOLIDE (pages sans grand hero sombre : fiche produit, panier) ---- */
/* Évite le logo blanc invisible sur fond blanc en haut de page */
body.page-solid-nav #navbar {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 30px var(--shadow);
  padding: 10px 0;
}
body.page-solid-nav #navbar .logo-animated,
body.page-solid-nav #navbar .logo-animated .logo-char {
  color: var(--turquoise-dark);
}
body.page-solid-nav #navbar .nav-links > li > a { color: var(--text-mid); }
body.page-solid-nav #navbar .nav-links > li > a:hover,
body.page-solid-nav #navbar .nav-links > li > a.active {
  background: var(--turquoise-light);
  color: var(--turquoise-dark);
}
body.page-solid-nav #navbar .hamburger span { background: var(--turquoise-dark); }
body.page-solid-nav #navbar .cart-btn {
  background: transparent;
  color: var(--turquoise-dark);
}
body.page-solid-nav #navbar .cart-btn:hover {
  background: var(--turquoise-light);
}
body.page-solid-nav #navbar .nav-cta {
  background: var(--gold) !important;
  color: white !important;
}

/* Sécurité : le logo doit toujours rester lisible quand la navbar est claire */
#navbar.scrolled .logo-animated,
#navbar.scrolled .logo-animated .logo-char {
  color: var(--turquoise-dark);
}

/* ============================================================
   FIX CHEVAUCHEMENT HERO ACCUEIL
   Les stats ne doivent plus toucher les points / le label du slideshow
   ============================================================ */
#hero { min-height: 100vh; }
.hero-content { padding-bottom: 170px !important; }
.hero-stats {
  margin-top: 38px;
  padding-top: 28px;
  gap: 26px 38px;
  flex-wrap: wrap;
  max-width: 700px;
}
#hero-dots { bottom: 34px; }
#hero-slide-label { bottom: 32px; right: 30px; }

@media (max-width: 768px) {
  .hero-content { padding-bottom: 70px !important; padding-top: 110px !important; }
  #hero-slide-label { display: none; }
  #hero-dots { display: none; }
  .her