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

:root {
  --bg:            #FAF8F5;
  --bg-2:          #F0EBE3;
  --bg-3:          #E5DDD3;
  --gold:          #8B6200;
  --gold-light:    #A07200;
  --gold-pale:     #FDF3D0;
  --cream:         #1A1614;
  --text:          #1A1614;
  --text-muted:    #6B6460;
  --border:        rgba(139,98,0,0.3);
  --border-subtle: rgba(26,22,20,0.09);
  --glass:         rgba(250,248,245,0.92);
  --radius: 2px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'Cormorant', serif;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(3rem, 7vw, 6rem); font-weight: 300; }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }

.label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

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

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* ── NAVBAR ── */
#navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 1400px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 64px;
  background: var(--glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  transition: all 0.4s ease;
}
#navbar.scrolled {
  top: 12px;
  background: rgba(250,248,245,0.97);
  border-color: rgba(26,22,20,0.14);
  box-shadow: 0 4px 24px rgba(26,22,20,0.07);
}
.nav-logo {
  font-family: 'Cormorant', serif;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--cream);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 2.5rem; list-style: none; }
.nav-links li { display: flex; align-items: center; }
.nav-links a {
  display: flex;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.25s;
  line-height: 1;
}
.nav-links a:hover { color: var(--cream); }

/* ── NAV DROPDOWN ── */
.nav-item-drop { position: relative; }
.nav-item-drop > a { gap: 0.35rem; }
.nav-item-drop > a::after {
  content: '';
  display: inline-block;
  width: 0; height: 0;
  border-left: 3.5px solid transparent;
  border-right: 3.5px solid transparent;
  border-top: 4px solid currentColor;
  opacity: 0.55;
  transition: transform 0.25s;
  flex-shrink: 0;
}
.nav-item-drop:hover > a::after { transform: rotate(180deg); opacity: 0.9; }
.nav-dropdown {
  position: absolute;
  top: 100%;            /* colle au trigger — pas de gap */
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: rgba(250,248,245,0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-subtle);
  box-shadow: 0 16px 48px rgba(26,22,20,0.1);
  min-width: 210px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
  z-index: 200;
  padding: 14px 0 0.6rem; /* padding-top = pont invisible sur le gap visuel */
}
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: 9px; left: 50%;  /* aligné sur le bord visible (après padding) */
  transform: translateX(-50%) rotate(45deg);
  width: 10px; height: 10px;
  background: rgba(250,248,245,0.98);
  border-left: 1px solid var(--border-subtle);
  border-top: 1px solid var(--border-subtle);
}
.nav-item-drop:hover .nav-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 0.65rem 1.5rem;
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  transition: color 0.2s, padding-left 0.2s, border-left-color 0.2s;
  border-left: 2px solid transparent;
}
.nav-dropdown a:hover { color: var(--gold); padding-left: 1.75rem; border-left-color: var(--gold); }
.nav-dropdown a.dropdown-active { color: var(--gold); border-left-color: var(--gold); }
.nav-dropdown-divider { height: 1px; background: var(--border-subtle); margin: 0.4rem 1.5rem; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.5rem;
  background: var(--gold);
  color: var(--bg);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius);
  transition: all 0.25s;
  cursor: pointer;
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

/* Mobile nav */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--cream); transition: all 0.3s;
}
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--bg);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Cormorant', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--cream);
  text-decoration: none;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--gold); }

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
}

/* ── HERO ── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.35;
}
.hero-fallback {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #EDE8DF 0%, #FAF8F5 45%, #E8E1D6 100%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(250,248,245,0.98) 0%,
    rgba(250,248,245,0.65) 55%,
    rgba(250,248,245,0.05) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: clamp(6rem, 12vh, 9rem) clamp(1.5rem, 5vw, 6rem) clamp(3rem, 6vh, 5rem);
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.3s forwards;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px; height: 1px;
  background: var(--gold);
}
.hero-title {
  max-width: 14ch;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.9s 0.5s forwards;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  max-width: 45ch;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.7s forwards;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.9s forwards;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background: var(--gold);
  color: var(--bg);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius);
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(202,138,4,0.3); }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(26,22,20,0.18);
  border-radius: var(--radius);
  transition: all 0.3s;
  cursor: pointer;
  background: transparent;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
  opacity: 0;
  animation: fadeIn 1s 1.2s forwards;
}
.stat-item { text-align: left; }
.stat-num {
  font-family: 'Cormorant', serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--cream);
  line-height: 1;
}
.stat-num span { color: var(--gold); }
.stat-label {
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.3rem;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
  flex-shrink: 0;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeIn 1s 1.5s forwards;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
.hero-scroll span {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── SECTIONS GENERAL ── */
section { padding: clamp(5rem, 10vh, 9rem) clamp(1.5rem, 5vw, 6rem); }

.section-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 4rem;
}
.section-header.center { align-items: center; text-align: center; }

.gold-line {
  display: block;
  width: 50px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 0.5rem;
}
.gold-line.center { margin: 0 auto 0.5rem; }

/* ── SERVICES GRID ── */
#services { background: var(--bg); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border-subtle);
  border: 1px solid var(--border-subtle);
}
@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; }
}

.service-card {
  position: relative;
  background: var(--bg);
  padding: 3rem;
  overflow: hidden;
  cursor: pointer;
  transition: background 0.4s;
  text-decoration: none;
  color: inherit;
  display: block;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(202,138,4,0.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}
.service-card:hover::before { opacity: 1; }
.service-card:hover { background: var(--bg-2); }

.service-num {
  font-family: 'Cormorant', serif;
  font-size: 4rem;
  font-weight: 300;
  color: rgba(202,138,4,0.12);
  line-height: 1;
  margin-bottom: 1.5rem;
  transition: color 0.4s;
}
.service-card:hover .service-num { color: rgba(202,138,4,0.25); }
.service-icon {
  width: 44px; height: 44px;
  margin-bottom: 1.5rem;
  color: var(--gold);
}
.service-card h3 { margin-bottom: 0.75rem; color: var(--cream); }
.service-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 2rem;
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.tag {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border: 1px solid var(--border);
  color: var(--text-muted);
  border-radius: 50px;
  transition: all 0.3s;
}
.service-card:hover .tag { border-color: var(--gold); color: var(--gold); }
.service-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  transition: gap 0.3s;
}
.service-card:hover .service-arrow { gap: 0.75rem; }

/* ── ABOUT SECTION ── */
#about {
  background: var(--bg-2);
  padding-top: 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
}
.about-img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  max-height: 650px;
}
.about-img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(30%);
}
.about-img-frame {
  position: absolute;
  inset: -16px 16px 16px -16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  z-index: -1;
}
.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 120px; height: 120px;
  background: var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.about-badge-num {
  font-family: 'Cormorant', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--bg);
  line-height: 1;
}
.about-badge-label {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bg);
  text-align: center;
  padding: 0 8px;
}
.about-content { display: flex; flex-direction: column; gap: 1.75rem; }
.about-content p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.9; }
.about-credentials {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  background: rgba(202,138,4,0.03);
}
.credential {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.credential::before {
  content: '';
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── BEFORE/AFTER ── */
#before-after { background: var(--bg); }
.ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (max-width: 900px) {
  .ba-grid { grid-template-columns: 1fr; }
}
.ba-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--bg-2);
}
.ba-slider-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  user-select: none;
}
.ba-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.ba-img.after { clip-path: inset(0 50% 0 0); transition: clip-path 0s; }
.ba-slider-line {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--gold);
  z-index: 3;
  transform: translateX(-50%);
}
.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px; height: 40px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  cursor: ew-resize;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}
.ba-labels {
  position: absolute;
  bottom: 1rem;
  left: 0; right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 1rem;
  z-index: 5;
  pointer-events: none;
}
.ba-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  background: rgba(250,248,245,0.88);
  color: var(--text-muted);
  backdrop-filter: blur(4px);
}
.ba-card-footer {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--border-subtle);
}
.ba-card-footer h4 {
  font-size: 1rem;
  color: var(--cream);
  margin-bottom: 0.25rem;
}
.ba-card-footer p { font-size: 0.75rem; color: var(--text-muted); }

/* ── TESTIMONIALS ── */
#testimonials { background: var(--bg-2); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}
.testimonial-card {
  padding: 2.5rem;
  border: 1px solid var(--border-subtle);
  background: var(--bg);
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}
.testimonial-card:hover { border-color: var(--border); transform: translateY(-4px); }
.testimonial-card::before {
  content: '\201C';
  font-family: 'Cormorant', serif;
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.25;
  position: absolute;
  top: 1rem; left: 1.5rem;
  line-height: 1;
}
.stars {
  display: flex; gap: 3px;
  margin-bottom: 1.25rem;
}
.star { color: var(--gold); font-size: 0.8rem; }
.testimonial-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 1.75rem;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--bg-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant', serif;
  font-size: 1.1rem;
  color: var(--gold);
  flex-shrink: 0;
}
.author-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.1rem;
}
.author-proc { font-size: 0.7rem; color: var(--text-muted); }

/* ── FAQ / CHATBOT ── */
#faq { background: var(--bg); }
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
@media (max-width: 900px) {
  .faq-layout { grid-template-columns: 1fr; gap: 3rem; }
}
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  cursor: pointer;
  gap: 1rem;
}
.faq-question h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--cream);
  line-height: 1.5;
}
.faq-icon {
  width: 28px; height: 28px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
  color: var(--gold);
}
.faq-item.open .faq-icon { background: var(--gold); color: var(--bg); transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 1.5rem; }
.faq-answer p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.9; }

/* CHATBOT */
.chatbot-wrap {
  position: sticky;
  top: 110px;
}
.chatbot-container {
  background: var(--bg-2);
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 520px;
}
.chatbot-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
  background: var(--bg-3);
}
.chatbot-avatar {
  width: 40px; height: 40px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.chatbot-name { font-size: 0.88rem; font-weight: 600; color: var(--cream); }
.chatbot-status {
  font-size: 0.7rem;
  color: #22C55E;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.chatbot-status::before {
  content: '';
  width: 6px; height: 6px;
  background: #22C55E;
  border-radius: 50%;
  display: inline-block;
}
.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  scrollbar-width: thin;
  scrollbar-color: var(--bg-3) transparent;
}
.msg {
  display: flex;
  flex-direction: column;
  max-width: 85%;
}
.msg.bot { align-self: flex-start; }
.msg.user { align-self: flex-end; }
.msg-bubble {
  padding: 0.85rem 1.1rem;
  font-size: 0.82rem;
  line-height: 1.7;
  border-radius: 2px;
}
.msg.bot .msg-bubble {
  background: var(--bg-3);
  color: var(--text);
  border-bottom-left-radius: 0;
}
.msg.user .msg-bubble {
  background: var(--gold);
  color: var(--bg);
  border-bottom-right-radius: 0;
  font-weight: 500;
}
.msg-time {
  font-size: 0.62rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
  padding: 0 0.25rem;
}
.msg.user .msg-time { text-align: right; }

.chatbot-quick {
  padding: 0.75rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  border-top: 1px solid var(--border-subtle);
}
.quick-btn {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 0.4rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 50px;
  color: var(--text-muted);
  cursor: pointer;
  background: transparent;
  transition: all 0.2s;
  white-space: nowrap;
}
.quick-btn:hover { border-color: var(--gold); color: var(--gold); }
.chatbot-input {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-3);
}
.chatbot-input input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--cream);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
}
.chatbot-input input::placeholder { color: var(--text-muted); }
.chatbot-send {
  width: 36px; height: 36px;
  background: var(--gold);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
  color: var(--bg);
}
.chatbot-send:hover { background: var(--gold-light); transform: scale(1.05); }

/* ── INSTAGRAM ── */
#instagram { background: var(--bg-2); }
.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
  margin-top: 2.5rem;
}
@media (max-width: 900px) {
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 500px) {
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
}
.insta-item {
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background: var(--bg-3);
  text-decoration: none;
}
.insta-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s, filter 0.4s;
  filter: grayscale(20%);
}
.insta-item:hover img { transform: scale(1.08); filter: grayscale(0%); }
.insta-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(202,138,4,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.insta-item:hover .insta-item-overlay { opacity: 1; }

/* ── CTA BAND ── */
#cta-band {
  padding: 6rem clamp(1.5rem, 5vw, 6rem);
  background: linear-gradient(135deg, #EDE8DF 0%, #F5F2EC 50%, #EDE8DF 100%);
  border-top: 1px solid rgba(139,98,0,0.2);
  border-bottom: 1px solid rgba(139,98,0,0.2);
  text-align: center;
}
.cta-band-inner {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.cta-band-inner h2 { color: var(--cream); }
.cta-band-inner p { color: var(--text-muted); font-size: 0.9rem; }
.cta-band-actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

/* ── FOOTER ── */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border-subtle);
  padding: 4rem clamp(1.5rem, 5vw, 6rem) 2rem;
}
.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 2rem;
}
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; }
}
.footer-brand p { font-size: 0.82rem; color: var(--text-muted); margin-top: 1rem; line-height: 1.9; max-width: 28ch; }
.footer-col h5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col ul li a {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--cream); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.footer-contact-item svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.72rem; color: var(--text-muted); }
.footer-socials { display: flex; gap: 1rem; }
.footer-socials a {
  width: 36px; height: 36px;
  border: 1px solid var(--border-subtle);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.25s;
}
.footer-socials a:hover { border-color: var(--gold); color: var(--gold); }
.footer-logo {
  font-family: 'Cormorant', serif;
  font-size: 1.1rem;
  color: var(--cream);
  text-decoration: none;
}
.footer-logo span { color: var(--gold); }

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── KEYFRAMES ── */
@keyframes fadeUp {
  to { opacity: 1; transform: none; }
}
@keyframes fadeIn {
  to { opacity: 1; }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* ── FLOATING RDV BTN ── */
.floating-rdv {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.5rem;
  background: var(--gold);
  color: var(--bg);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius);
  box-shadow: 0 8px 30px rgba(202,138,4,0.4);
  transition: all 0.3s;
  cursor: pointer;
}
.floating-rdv:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(202,138,4,0.5); }

/* ── PAGE HEADER ── */
.page-hero {
  padding: 10rem clamp(1.5rem, 5vw, 6rem) 5rem;
  background: var(--bg);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(202,138,4,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner { max-width: 1400px; margin: 0 auto; }

/* ── PAGE HERO SPLIT (services) ── */
.page-hero-split {
  display: flex;
  align-items: center;
  gap: clamp(3rem, 5vw, 6rem);
}
.page-hero-content {
  flex: 1 1 0;
  min-width: 0;
}
.page-hero-reel {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
}
.reel-frame-wrap {
  position: relative;
  width: clamp(260px, 26vw, 360px);
}
.reel-deco-border {
  position: absolute;
  inset: -10px 10px 10px -10px;
  border: 1px solid var(--border);
  z-index: 0;
  pointer-events: none;
}

/* ── REEL CARD (vidéo autoplay) ── */
.reel-card {
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: #111;
}
.reel-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.reel-gradient-top {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}
.reel-gradient-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}
.reel-top-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1rem;
  color: white;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  z-index: 3;
  text-decoration: none;
  transition: opacity 0.2s;
}
.reel-top-bar:hover { opacity: 0.8; }
.reel-bottom-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem 1rem 1rem;
  z-index: 3;
  text-decoration: none;
  transition: opacity 0.2s;
}
.reel-bottom-info:hover { opacity: 0.8; }
.reel-bottom-label {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: white;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.3rem;
}
.reel-bottom-desc {
  color: rgba(255,255,255,0.85);
  font-size: 0.72rem;
  line-height: 1.4;
  margin: 0;
}
.reel-profile-tag {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.reel-profile-tag:hover { color: var(--gold); }

@media (max-width: 960px) {
  .page-hero-split { flex-direction: column; align-items: flex-start; }
  .page-hero-reel { align-self: center; }
  .reel-frame-wrap { width: min(260px, 70vw); }
}
@media (max-width: 600px) {
  .page-hero-reel { display: none; }
}

/* ── CABINET SLIDESHOW (contact hero) ── */
.cabinet-slideshow-wrap {
  position: relative;
  width: clamp(380px, 42vw, 580px);
}
.cabinet-deco-border {
  position: absolute;
  inset: -10px 10px 10px -10px;
  border: 1px solid var(--border);
  z-index: 0;
  pointer-events: none;
}
.cabinet-slideshow {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--bg-2);
}
.cabinet-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.cabinet-slide.active { opacity: 1; }
.cabinet-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
/* Indicateurs */
.cabinet-dots {
  position: absolute;
  bottom: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2;
}
.cabinet-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  transition: background 0.3s, transform 0.3s;
  cursor: pointer;
}
.cabinet-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}
.cabinet-address-tag {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-muted);
}
@media (max-width: 960px) {
  .cabinet-slideshow-wrap { width: min(380px, 85vw); }
}
@media (max-width: 600px) {
  .page-hero-reel { display: none; }
}

/* ── TYPING CURSOR ── */
.typing-cursor {
  display: inline-block;
  width: 2px;
  height: 1em;
  background: var(--gold);
  margin-left: 2px;
  animation: blink 0.8s infinite;
  vertical-align: text-bottom;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* ── GOLD DIVIDER ── */
.gold-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0.4;
  margin: 0;
}

/* ── SERVICES DETAIL PAGE ── */
.services-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(12,10,9,1) 40%, transparent);
}
.service-detail-section {
  padding: 5rem clamp(1.5rem, 5vw, 6rem);
  border-bottom: 1px solid var(--border-subtle);
}
.service-detail-section:nth-child(even) { background: var(--bg-2); }
.service-detail-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
@media (max-width: 900px) {
  .service-detail-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
.service-detail-grid.reverse { direction: rtl; }
.service-detail-grid.reverse > * { direction: ltr; }
.service-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.service-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-detail-grid:hover .service-img-wrap img { transform: scale(1.03); }
.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin: 1.5rem 0;
}
.service-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.service-list li::before {
  content: '';
  width: 20px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ── CONTACT PAGE ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  max-width: 1400px;
  margin: 0 auto;
  align-items: start;
}
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}
.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.contact-info-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.contact-icon-wrap {
  width: 48px; height: 48px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.contact-info-item h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.contact-info-item p, .contact-info-item a {
  font-size: 0.88rem;
  color: var(--text-muted);
  text-decoration: none;
  line-height: 1.7;
}
.contact-info-item a:hover { color: var(--cream); }

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-2);
  border: 1px solid var(--border-subtle);
  color: var(--cream);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  padding: 0.875rem 1rem;
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.25s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { cursor: pointer; }
.form-group select option { background: var(--bg-2); }
.form-note { font-size: 0.75rem; color: var(--text-muted); }

/* ── ABOUT PAGE ── */
.about-full-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  max-width: 1400px;
  margin: 0 auto;
  align-items: start;
}
@media (max-width: 900px) {
  .about-full-grid { grid-template-columns: 1fr; gap: 3rem; }
}
.about-timeline { display: flex; flex-direction: column; }
.timeline-item {
  display: flex;
  gap: 1.5rem;
  padding-bottom: 2.5rem;
  position: relative;
}
.timeline-item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 40px;
  bottom: 0;
  width: 1px;
  background: var(--border-subtle);
}
.timeline-dot {
  width: 40px; height: 40px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-family: 'Cormorant', serif;
  font-size: 0.85rem;
  font-weight: 500;
}
.timeline-content h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.25rem;
}
.timeline-content p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.7; }

.expertise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}
.expertise-item {
  padding: 1.5rem;
  border: 1px solid var(--border-subtle);
  background: var(--bg-2);
  transition: border-color 0.3s;
}
.expertise-item:hover { border-color: var(--border); }
.expertise-item h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.4rem;
}
.expertise-item p { font-size: 0.75rem; color: var(--text-muted); line-height: 1.7; }

/* ── CHATBOT TYPING INDICATOR ── */
.typing-dots {
  display: flex !important;
  align-items: center;
  gap: 5px;
  padding: 0.75rem 1rem !important;
  min-height: auto !important;
}
.typing-dots span {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--text-muted);
  border-radius: 50%;
  animation: typingBounce 1.3s ease-in-out infinite;
  opacity: 0.5;
}
.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingBounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30%           { transform: translateY(-7px); opacity: 1; }
}

/* Disable state for input while bot is typing */
.chatbot-input input:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.chatbot-send:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* ── HERO IMAGE PANEL ── */
.hero-img-panel {
  position: absolute;
  right: clamp(6rem, 10vw, 14rem);
  top: 50%;
  transform: translateY(-52%);
  width: min(32vw, 400px);
  aspect-ratio: 3/4;
  z-index: 1;
  overflow: visible;
}
.hero-img-panel-inner {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.hero-img-panel-inner::before {
  content: '';
  position: absolute;
  inset: -14px 14px 14px -14px;
  border: 1px solid var(--border);
  z-index: -1;
  pointer-events: none;
}
.hero-img-panel-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.9s ease;
}
.hero-img-panel-inner:hover img { transform: scale(1.04); }
.hero-img-panel-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 55%, rgba(250,248,245,0.45) 100%);
  pointer-events: none;
}
.hero-img-badge {
  position: absolute;
  bottom: -1.25rem;
  left: -1.25rem;
  z-index: 4;
  padding: 0.85rem 1.4rem;
  background: var(--gold);
  line-height: 1.5;
  pointer-events: none;
}
.hero-img-badge-top {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bg);
}
.hero-img-badge-sub {
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  color: rgba(250,248,245,0.72);
  margin-top: 0.15rem;
}
@media (max-width: 1100px) {
  .hero-img-panel {
    width: min(28vw, 320px);
    right: clamp(2rem, 4vw, 7rem);
  }
}
@media (max-width: 900px) {
  .hero-img-panel { display: none; }
}

/* ── FIN ── */

