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

:root {
  --c-dark:    #2B4C59;
  --c-dark2:   #35606f;
  --c-mid:     #6b6a67;
  --c-muted:   #9a9895;
  --c-light:   #f5f3ee;
  --c-border:  #e2dfd8;
  --c-gold:    #a67c52;
  --c-gold-l:  #c4986a;
  --c-gold-d:  #8a6340;
  --c-white:   #ffffff;
  --c-red:     #c0392b;
  --ff-d: 'Playfair Display', Georgia, serif;
  --ff-b: 'Outfit', sans-serif;
  --h: 68px;
  --r: 3px;
  --shadow: 0 4px 24px rgba(0,0,0,.08);
  --shadow-md: 0 8px 40px rgba(0,0,0,.12);
}

html { scroll-behavior: smooth; }
body { font-family: var(--ff-b); font-size: 15px; color: var(--c-dark); background: var(--c-white); line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--ff-b); }

/* ═══════════════════════════════════════
   TOPBAR (bande supérieure)
═══════════════════════════════════════ */
.topbar {
  background: var(--c-dark);
  color: rgba(255,255,255,.55);
  font-size: 12px;
  letter-spacing: .3px;
  height: 36px;
  display: flex;
  align-items: center;
}
.topbar-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.topbar-left { display: flex; align-items: center; gap: 1.5rem; }
.topbar-left span { display: flex; align-items: center; gap: 6px; }
.topbar-right { display: flex; align-items: center; gap: 1.25rem; }
.topbar a { color: rgba(255,255,255,.55); transition: color .2s; }
.topbar a:hover { color: var(--c-gold-l); }
.topbar-dot { color: rgba(255,255,255,.2); }

/* ═══════════════════════════════════════
   HEADER
═══════════════════════════════════════ */
#site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--c-white);
  border-bottom: 1px solid var(--c-border);
  height: var(--h);
  transition: box-shadow .3s;
}
#site-header.shadowed { box-shadow: var(--shadow-md); }

.header-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo-mark {
  width: 42px; height: 42px;
  border: 2px solid var(--c-gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-d);
  font-size: 16px; font-weight: 500;
  color: var(--c-gold);
  letter-spacing: 1px;
}
.logo-text { line-height: 1.2; }
.logo-name {
  font-family: var(--ff-d);
  font-size: 17px; font-weight: 500;
  color: var(--c-dark);
  letter-spacing: .2px;
}
.logo-sub {
  font-size: 10px;
  color: var(--c-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Nav principale */
.main-nav { flex: 1; display: flex; align-items: center; justify-content: center; }
.nav-list { display: flex; align-items: stretch; height: var(--h); }
.nav-item { position: relative; display: flex; align-items: center; }
.nav-link {
  display: flex; align-items: center;
  padding: 0 18px;
  font-size: 14px; font-weight: 400;
  color: var(--c-dark2);
  height: 100%;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--c-gold);
  border-bottom-color: var(--c-gold);
}
.nav-link svg { margin-left: 4px; transition: transform .2s; }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

/* Mega menu */
.mega-menu {
  display: none;
  position: absolute;
  top: calc(var(--h) - 2px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-top: 2px solid var(--c-gold);
  box-shadow: var(--shadow-md);
  min-width: 280px;
  padding: 1.5rem;
  z-index: 999;
}
.nav-item:hover .mega-menu { display: block; }
.mega-cols { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.mega-cols-single { grid-template-columns: 1fr; min-width: 220px; }
.mega-col-title {
  font-size: 10px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: .75rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--c-border);
}
.mega-col a {
  display: block;
  font-size: 13px;
  color: var(--c-dark2);
  padding: 5px 0;
  transition: color .15s, padding-left .15s;
  white-space: nowrap;
}
.mega-col a:hover { color: var(--c-gold); padding-left: 6px; }
.mega-col a.mega-col-all {
  margin-top: .5rem;
  padding-top: .75rem;
  border-top: 1px solid var(--c-border);
  color: var(--c-gold);
  font-weight: 500;
}

/* Actions header */
.header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.btn-ghost {
  font-size: 13px; font-weight: 400;
  color: var(--c-dark2);
  padding: 7px 16px;
  border: 1px solid var(--c-border);
  background: transparent;
  transition: all .2s;
  white-space: nowrap;
}
.btn-ghost:hover { border-color: var(--c-gold); color: var(--c-gold); }
.btn-solid {
  font-size: 13px; font-weight: 500;
  color: var(--c-white);
  background: var(--c-gold);
  padding: 7px 20px;
  border: none;
  transition: background .2s;
  white-space: nowrap;
}
.btn-solid:hover { background: var(--c-gold-d); }

/* User dropdown */
.user-dd { position: relative; }
.user-btn {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--c-dark2);
  background: transparent;
  border: 1px solid var(--c-border);
  padding: 6px 14px;
  transition: all .2s;
}
.user-btn:hover { border-color: var(--c-gold); color: var(--c-gold); }
.user-avatar {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--c-gold);
  color: #fff;
  font-size: 11px; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
}
.user-menu {
  display: none;
  position: absolute; top: calc(100% + 8px); right: 0;
  min-width: 200px;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-md);
  z-index: 9999;
}
.user-dd.open .user-menu { display: block; }
.user-menu a {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 18px;
  font-size: 13px; color: var(--c-dark2);
  border-bottom: 1px solid var(--c-border);
  transition: background .15s;
}
.user-menu a:last-child { border-bottom: none; }
.user-menu a:hover { background: var(--c-light); }
.user-menu a.danger { color: var(--c-red); }

/* Burger */
.burger {
  display: none;
  flex-direction: column; gap: 5px;
  background: transparent; border: none;
  padding: 4px;
}
.burger span { display: block; width: 22px; height: 1.5px; background: var(--c-dark); transition: all .25s; }
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ═══════════════════════════════════════
   HERO SLIDER
═══════════════════════════════════════ */
.hero { position: relative; height: 620px; overflow: hidden; background: var(--c-dark); }
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1s ease; }
.slide.active { opacity: 1; z-index: 1; }
.slide-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.04);
  transition: transform 7s ease;
}
.slide.active .slide-bg { transform: scale(1); }

/* Gradient overlay — style Logis: fort à gauche, transparent à droite */
.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(43,76,89,.80) 0%, rgba(43,76,89,.42) 55%, rgba(43,76,89,.10) 100%);
  z-index: 2;
}
.slide-content {
  position: relative; z-index: 3;
  height: 100%;
  max-width: 1320px; margin: 0 auto; padding: 0 2rem;
  display: flex; flex-direction: column; justify-content: center;
  max-width: 600px;
}
.slide-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--c-gold-l);
  margin-bottom: 1.25rem;
}
.slide-eyebrow::before {
  content: ''; display: block; width: 28px; height: 1px; background: var(--c-gold-l);
}
.slide-title {
  font-family: var(--ff-d);
  font-size: 52px; font-weight: 400; line-height: 1.1;
  color: #fff;
  margin-bottom: 1.25rem;
}
.slide-title em { font-style: italic; color: var(--c-gold-l); }
.slide-desc {
  font-size: 16px; font-weight: 300;
  color: rgba(255,255,255,.72);
  line-height: 1.75;
  margin-bottom: 2rem;
}
.slide-cta {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--c-gold);
  color: #fff;
  font-size: 13px; font-weight: 500; letter-spacing: .5px;
  padding: 14px 32px;
  border: none;
  transition: background .25s;
  width: fit-content;
}
.slide-cta:hover { background: var(--c-gold-d); color: #fff; }
.slide-cta svg { flex-shrink: 0; }

/* Contrôles slider */
.slider-ctrl {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 10; background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff; width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; transition: all .2s;
}
.slider-ctrl:hover { background: var(--c-gold); border-color: var(--c-gold); }
.slider-prev { left: 2rem; }
.slider-next { right: 2rem; }
.slider-dots {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 10; display: flex; gap: 8px;
}
.dot {
  width: 28px; height: 3px;
  background: rgba(255,255,255,.3);
  border: none; transition: all .3s; padding: 0;
}
.dot.active { background: var(--c-gold); width: 44px; }

/* Compteur slide */
.slide-counter {
  position: absolute; bottom: 2.25rem; right: 2rem;
  z-index: 10; color: rgba(255,255,255,.5);
  font-size: 12px; letter-spacing: 2px;
}
.slide-counter strong { color: #fff; }

/* ═══════════════════════════════════════
   BARRE DE RECHERCHE RAPIDE
═══════════════════════════════════════ */
.searchbar {
  background: var(--c-white);
  border-bottom: 1px solid var(--c-border);
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
  position: relative; z-index: 10;
}
.search-form {
  max-width: 1320px; margin: 0 auto;
  display: flex; align-items: stretch;
  min-height: 76px;
}
.search-field {
  flex: 1; display: flex; align-items: center; gap: 12px;
  padding: 0 1.75rem;
  border-right: 1px solid var(--c-border);
  cursor: pointer; transition: background .15s;
}
.search-field:hover { background: var(--c-light); }
.search-field-icon { color: var(--c-gold); font-size: 20px; flex-shrink: 0; }
.search-field-body { display: flex; flex-direction: column; }
.search-label { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--c-muted); margin-bottom: 2px; }
.search-value { font-size: 14px; font-weight: 500; color: var(--c-dark); }
.search-value input, .search-value select {
  border: none; outline: none;
  font-family: var(--ff-b); font-size: 14px; font-weight: 500;
  color: var(--c-dark); background: transparent; width: 100%;
}
.search-btn {
  background: var(--c-gold);
  color: #fff;
  border: none;
  padding: 0 3rem;
  font-size: 14px; font-weight: 500; letter-spacing: .5px;
  display: flex; align-items: center; gap: 10px;
  white-space: nowrap;
  transition: background .2s;
  flex-shrink: 0;
}
.search-btn:hover { background: var(--c-gold-d); }

/* ═══════════════════════════════════════
   SECTIONS COMMUNES
═══════════════════════════════════════ */
.section { padding: 5rem 0; }
.section-light { background: var(--c-light); }
.section-dark { background: var(--c-dark); }
.container { max-width: 1320px; margin: 0 auto; padding: 0 2rem; }

.section-head { margin-bottom: 3rem; }
.section-head.centered { text-align: center; }
.section-head.spaced { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 1rem; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--c-gold); margin-bottom: .75rem;
}
.eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--c-gold); display: block; }
.section-title {
  font-family: var(--ff-d);
  font-size: 36px; font-weight: 400;
  color: var(--c-dark); line-height: 1.2;
}
.section-title.light { color: #fff; }
.section-sub { font-size: 15px; color: var(--c-mid); line-height: 1.75; margin-top: .5rem; max-width: 540px; }
.link-more {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--c-gold); font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: border-color .2s;
  white-space: nowrap;
}
.link-more:hover { border-bottom-color: var(--c-gold); }

/* ═══════════════════════════════════════
   BANNIÈRE AVANTAGES (style Logis)
═══════════════════════════════════════ */
.advantages {
  background: var(--c-dark2);
  padding: 2rem 0;
}
.adv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.adv-item {
  display: flex; align-items: center; gap: 1.25rem;
  padding: 1.25rem 2rem;
  border-right: 1px solid rgba(255,255,255,.08);
}
.adv-item:last-child { border-right: none; }
.adv-icon {
  width: 52px; height: 52px;
  border: 1px solid rgba(176,140,94,.4);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-gold-l); font-size: 22px;
  flex-shrink: 0;
}
.adv-title { font-size: 14px; font-weight: 500; color: #fff; margin-bottom: 2px; }
.adv-desc  { font-size: 12px; color: rgba(255,255,255,.45); line-height: 1.5; }

/* ═══════════════════════════════════════
   APPARTEMENTS
═══════════════════════════════════════ */
.apt-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--c-border); }
.apt-card { background: var(--c-white); overflow: hidden; position: relative; }
.apt-img { height: 240px; overflow: hidden; position: relative; }
.apt-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.apt-card:hover .apt-img img { transform: scale(1.06); }
.apt-badge {
  position: absolute; top: 1rem; left: 1rem;
  font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 4px 12px; font-weight: 500;
}
.badge-available { background: var(--c-gold); color: #fff; }
.badge-unavailable { background: rgba(0,0,0,.55); color: #fff; }
.apt-body { padding: 1.5rem; }
.apt-name {
  font-family: var(--ff-d);
  font-size: 20px; font-weight: 400;
  color: var(--c-dark); margin-bottom: 4px;
}
.apt-city { font-size: 12px; color: var(--c-muted); display: flex; align-items: center; gap: 5px; margin-bottom: 1rem; }
.apt-meta { display: flex; gap: 1.25rem; margin-bottom: 1.25rem; }
.apt-meta-item { display: flex; align-items: center; gap: 5px; font-size: 13px; color: var(--c-mid); }
.apt-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 1.25rem; border-top: 1px solid var(--c-border);
  flex-wrap: wrap; gap: .75rem;
}
.apt-price { display: flex; align-items: baseline; gap: 4px; }
.apt-price-num { font-family: var(--ff-d); font-size: 26px; font-weight: 400; color: var(--c-dark); }
.apt-price-cur { font-size: 11px; color: var(--c-muted); }
.apt-price-per { font-size: 12px; color: var(--c-muted); }
.apt-actions { display: flex; gap: 8px; }
.btn-sm-ghost {
  font-size: 12px; padding: 6px 14px;
  border: 1px solid var(--c-border); background: transparent;
  color: var(--c-dark2); transition: all .2s;
}
.btn-sm-ghost:hover { border-color: var(--c-gold); color: var(--c-gold); }
.btn-sm-gold {
  font-size: 12px; padding: 6px 14px;
  background: var(--c-gold); color: #fff; border: none;
  transition: background .2s;
}
.btn-sm-gold:hover { background: var(--c-gold-d); }
.btn-sm-off { font-size: 12px; padding: 6px 14px; background: var(--c-border); color: var(--c-muted); border: none; cursor: not-allowed; }

/* ═══════════════════════════════════════
   SERVICES
═══════════════════════════════════════ */
.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--c-border); }
.svc-card {
  background: var(--c-white);
  padding: 2.25rem 1.75rem;
  transition: background .25s;
  position: relative; overflow: hidden;
}
.svc-card::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--c-gold);
  transition: width .3s ease;
}
.svc-card:hover { background: var(--c-light); }
.svc-card:hover::after { width: 100%; }
.svc-icon {
  width: 56px; height: 56px; margin-bottom: 1.25rem;
  border: 1px solid var(--c-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-gold); font-size: 24px;
  transition: border-color .25s, background .25s;
}
.svc-card:hover .svc-icon { border-color: var(--c-gold); background: rgba(166,124,82,.06); }
.svc-name { font-family: var(--ff-d); font-size: 18px; font-weight: 400; color: var(--c-dark); margin-bottom: .5rem; }
.svc-desc { font-size: 13px; color: var(--c-mid); line-height: 1.65; margin-bottom: 1rem; }
.svc-link { font-size: 12px; color: var(--c-gold); display: flex; align-items: center; gap: 6px; }
.svc-link:hover { gap: 10px; }

/* ═══════════════════════════════════════
   ABOUT BICOLORE (style Logis)
═══════════════════════════════════════ */
.about-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 480px; }
.about-img { position: relative; overflow: hidden; }
.about-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.about-split:hover .about-img img { transform: scale(1.03); }
.about-content {
  background: var(--c-dark);
  padding: 4.5rem 4rem;
  display: flex; flex-direction: column; justify-content: center;
}
.about-content .eyebrow { color: var(--c-gold-l); }
.about-content .eyebrow::before { background: var(--c-gold-l); }
.about-text { font-size: 15px; color: rgba(255,255,255,.6); line-height: 1.85; margin: 1rem 0 2rem; }
.stats-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 2.5rem; padding-top: 2.5rem; border-top: 1px solid rgba(255,255,255,.1); }
.stat-num { font-family: var(--ff-d); font-size: 36px; color: var(--c-gold-l); line-height: 1; }
.stat-label { font-size: 11px; color: rgba(255,255,255,.4); letter-spacing: 1.5px; text-transform: uppercase; margin-top: 6px; }
.btn-outline-white {
  display: inline-flex; align-items: center; gap: 10px;
  color: #fff; font-size: 13px; font-weight: 400;
  border: 1px solid rgba(255,255,255,.3);
  padding: 12px 28px;
  width: fit-content; margin-top: 2.5rem;
  transition: all .25s;
}
.btn-outline-white:hover { background: var(--c-gold); border-color: var(--c-gold); color: #fff; }

/* ═══════════════════════════════════════
   TÉMOIGNAGES
═══════════════════════════════════════ */
.testi-carousel { position: relative; }
.testi-grid {
  display: flex;
  gap: 1px;
  background: var(--c-border);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.testi-grid::-webkit-scrollbar { display: none; }
.testi-card {
  background: var(--c-white);
  padding: 2rem;
  position: relative;
  flex: 0 0 calc((100% - 2px) / 3);
  scroll-snap-align: start;
}
.testi-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 5; width: 40px; height: 40px;
  background: var(--c-white); border: 1px solid var(--c-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-dark2); transition: all .2s; cursor: pointer;
}
.testi-nav:hover { background: var(--c-gold); border-color: var(--c-gold); color: #fff; }
.testi-nav-prev { left: -20px; }
.testi-nav-next { right: -20px; }
@media (max-width: 992px) {
  .testi-card { flex-basis: calc((100% - 1px) / 2); }
}
@media (max-width: 640px) {
  .testi-card { flex-basis: 90%; }
  .testi-nav { display: none; }
}
.testi-quote {
  font-family: var(--ff-d);
  font-size: 48px; color: var(--c-gold);
  line-height: .8; margin-bottom: 1rem;
  opacity: .3;
}
.testi-text {
  font-family: var(--ff-d);
  font-size: 16px; font-style: italic;
  color: var(--c-dark2); line-height: 1.7;
  margin-bottom: 1.5rem;
}
.testi-stars { display: flex; gap: 3px; margin-bottom: 1.25rem; }
.star { width: 14px; height: 14px; }
.star-on { color: var(--c-gold); }
.star-off { color: var(--c-border); }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-av {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--c-gold);
  color: #fff; font-size: 15px; font-weight: 500;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.testi-name { font-size: 14px; font-weight: 500; color: var(--c-dark); }
.testi-date { font-size: 12px; color: var(--c-muted); }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.site-footer { background: var(--c-dark); padding: 5rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 4rem; }
.footer-brand-name {
  font-family: var(--ff-d);
  font-size: 20px; color: #fff; margin-bottom: .25rem;
}
.footer-brand-sub { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 1.25rem; }
.footer-desc { font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.75; }
.footer-socials { display: flex; gap: 10px; margin-top: 1.5rem; }
.social-btn {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.45); font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.social-btn:hover { border-color: var(--c-gold); color: var(--c-gold); }
.footer-channels { margin-top: 1.75rem; }
.footer-channels-label { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: .6rem; }
.footer-channels-row { display: flex; gap: 10px; flex-wrap: wrap; }
.channel-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 14px; font-size: 12px; font-weight: 500;
  border: 1px solid rgba(255,255,255,.18); color: rgba(255,255,255,.75);
  transition: all .2s;
}
.channel-badge:hover { border-color: var(--c-gold); color: var(--c-gold-l); }
.footer-col-title {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 1.25rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,.5); transition: color .2s; display: flex; align-items: center; gap: 8px; }
.footer-links a:hover { color: var(--c-gold-l); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: rgba(255,255,255,.5); margin-bottom: 12px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 1.5rem 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,.25); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: 12px; color: rgba(255,255,255,.25); transition: color .2s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,.55); }
.footer-credit { color: #ff9f1c !important; font-weight: 500; }
.footer-credit strong { color: #ffb84d; }
.footer-credit:hover { color: #ffb84d !important; }

/* ═══════════════════════════════════════
   MOBILE NAV
═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .main-nav { display: none; position: fixed; top: calc(36px + var(--h)); left: 0; right: 0; bottom: 0; background: var(--c-white); flex-direction: column; align-items: flex-start; overflow-y: auto; padding: 1rem 0; z-index: 890; }
  .main-nav.open { display: flex; }
  .nav-list { flex-direction: column; height: auto; width: 100%; }
  .nav-link { height: auto; padding: 14px 2rem; border-bottom: none; border-left: 3px solid transparent; width: 100%; }
  .nav-link.active { border-left-color: var(--c-gold); background: var(--c-light); }
  .mega-menu { position: static; transform: none; box-shadow: none; border: none; border-top: 1px solid var(--c-border); min-width: auto; width: 100%; display: none !important; }
  .burger { display: flex; }
  /* Sur mobile : masquer "Inscription" pour gagner de la place, garder un accès
     compact à la connexion, et resserrer les actions pour pousser le burger
     dans le coin. */
  .btn-solid { display: none; }
  .header-actions { gap: 6px; }
  .btn-ghost {
    padding: 7px 10px;
    display: flex;
    align-items: center;
    gap: 0;
  }
  .btn-ghost .btn-ghost-text { display: none; }
}
@media (min-width: 1025px) {
  .btn-ghost-icon { display: none; }
}
@media (max-width: 768px) {
  :root { --h: 60px; }
  .topbar { display: none; }
  .hero { height: 480px; }
  .slide-title { font-size: 34px; }
  .search-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    flex-direction: unset;
    min-height: auto;
  }
  .search-field {
    border-right: none;
    border-bottom: 1px solid var(--c-border);
    padding: .85rem 1.1rem;
  }
  /* Destination (1er champ) et Voyageurs (4e) prennent toute la largeur,
     Arrivée / Départ restent côte à côte pour gagner de la place */
  .search-field:nth-child(1),
  .search-field:nth-child(4) { grid-column: 1 / -1; }
  .search-field:nth-child(2) { border-right: 1px solid var(--c-border); }
  .search-btn {
    grid-column: 1 / -1;
    width: 100%;
    justify-content: center;
    padding: 1.1rem;
  }
  .search-label { font-size: 9px; }
  .search-value { font-size: 13px; }
  /* Avantages : défilement horizontal au lieu d'un empilement vertical */
  .adv-grid {
    display: flex;
    grid-template-columns: unset;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .adv-grid::-webkit-scrollbar { display: none; }
  .adv-item {
    flex: 0 0 85%;
    scroll-snap-align: start;
    border-right: none;
    border-bottom: none;
  }
  .adv-item + .adv-item { border-left: 1px solid rgba(255,255,255,.08); }

  /* Appartements & Services : défilement horizontal au lieu d'une liste empilée */
  .apt-grid, .svc-grid {
    display: flex;
    grid-template-columns: unset;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .apt-grid::-webkit-scrollbar, .svc-grid::-webkit-scrollbar { display: none; }
  .apt-card, .svc-card {
    flex: 0 0 88%;
    scroll-snap-align: start;
  }

  .about-split { grid-template-columns: 1fr; }
  .about-img { height: 280px; }
  .about-content { padding: 3rem 1.5rem; }

  /* Footer : grille 2 colonnes au lieu d'une liste empilée */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem 1.5rem; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }

  .section { padding: 3.5rem 0; }
  .mega-cols { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════ */
@keyframes fadeUp { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
.fade-up { animation: fadeUp .6s ease forwards; opacity: 0; }
.fd-1 { animation-delay: .1s; } .fd-2 { animation-delay: .25s; } .fd-3 { animation-delay: .4s; } .fd-4 { animation-delay: .55s; }
