.elementor-20 .elementor-element.elementor-element-39b2261{--display:flex;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for global, class: .elementor-global-888 *//* ===== VARIABLES ===== */
:root {
  --cv-beige-light: #F5EFE6;
  --cv-gold: #C9A96E;
  --cv-gold-light: #E2D1A2;
  --cv-dark: #1A1A1A;
}

/* ===== TOP HEADER ===== */
.cv-topheader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
  background: linear-gradient(90deg, #1A1A1A 0%, #2C2C2C 100%);
  border-bottom: 1px solid rgba(201, 169, 110, 0.2);
  padding: 10px 50px;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
}

.cv-topheader__inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 25px;
  max-width: 1600px;
  margin: 0 auto;
}

.cv-topheader__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--cv-beige-light);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 1px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.cv-topheader__item--link:hover {
  color: var(--cv-gold-light);
}

.cv-topheader__icon {
  width: 14px;
  height: 14px;
  color: var(--cv-gold);
  flex-shrink: 0;
}

.cv-topheader__divider {
  width: 1px;
  height: 16px;
  background: rgba(201, 169, 110, 0.3);
}

/* Top header caché au scroll */
.cv-topheader.cv-topheader--hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

/* ===== NAVIGATION ===== */
.cv-nav {
  position: fixed;
  top: 40px; /* sous le top header */
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.cv-nav__logo {
  text-decoration: none;
  display: block;
}

.cv-nav__logo img {
  height: 110px;
  width: auto;
  display: block;
  transition: height 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

/* === ÉTAT SCROLLÉ : BANDE BLANCHE + RÉTRÉCIE === */
.cv-nav.cv-nav--scrolled {
  top: 0 !important;
  background: #FFFFFF !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 8px 50px !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(201, 169, 110, 0.15);
}

.cv-nav.cv-nav--scrolled .cv-nav__logo img {
  height: 55px !important;
}

/* Liens en sombre quand bande blanche */
.cv-nav.cv-nav--scrolled .cv-nav__links a {
  color: var(--cv-dark) !important;
}

.cv-nav.cv-nav--scrolled .cv-nav__links a:hover {
  color: var(--cv-gold) !important;
}

/* CTA adapté */
.cv-nav.cv-nav--scrolled .cv-nav__cta {
  border-color: var(--cv-gold) !important;
  color: var(--cv-dark) !important;
}

.cv-nav.cv-nav--scrolled .cv-nav__cta:hover {
  background: var(--cv-gold) !important;
  color: #FFFFFF !important;
}

/* Hamburger sombre quand bande blanche */
.cv-nav.cv-nav--scrolled .cv-nav__hamburger span {
  background: var(--cv-dark);
}

/* ===== LIENS NAV ===== */
.cv-nav__links {
  display: flex;
  list-style: none;
  gap: 35px;
  align-items: center;
  margin: 0;
  padding: 0;
}

.cv-nav__links a {
  color: var(--cv-beige-light);
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}

.cv-nav__links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--cv-gold);
  transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.cv-nav__links a:hover::after {
  width: 100%;
}

.cv-nav__cta {
  background: transparent;
  border: 1.5px solid var(--cv-gold);
  padding: 10px 25px !important;
  border-radius: 2px;
  transition: all 0.3s ease !important;
}

.cv-nav__cta::after {
  display: none !important;
}

/* ===== HAMBURGER ===== */
.cv-nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1002;
}

.cv-nav__hamburger span {
  width: 28px;
  height: 2px;
  background: var(--cv-beige-light);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.cv-nav__hamburger.cv-nav__hamburger--active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}
.cv-nav__hamburger.cv-nav__hamburger--active span:nth-child(2) {
  opacity: 0;
}
.cv-nav__hamburger.cv-nav__hamburger--active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .cv-topheader { padding: 8px 20px; }
  .cv-topheader__inner { justify-content: center; gap: 15px; }
  .cv-topheader__item { font-size: 0.7rem; }
  .cv-nav { padding: 12px 25px; }
  .cv-nav.cv-nav--scrolled { padding: 8px 25px !important; }
  .cv-nav__logo img { height: 80px; }
  .cv-nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 350px;
    height: 100vh;
    background: rgba(26, 26, 26, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    gap: 25px;
    transition: right 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .cv-nav__links.cv-nav__links--open { right: 0; }
  .cv-nav.cv-nav--scrolled .cv-nav__links a { color: var(--cv-beige-light) !important; }
  .cv-nav__hamburger { display: flex; }
}

@media (max-width: 600px) {
  .cv-topheader__divider { display: none; }
  .cv-topheader__inner { flex-wrap: wrap; gap: 12px; }
  .cv-nav__logo img { height: 65px; }
  .cv-nav.cv-nav--scrolled .cv-nav__logo img { height: 45px !important; }
}/* End custom CSS */