/*
Theme Name: Astra Child - Chebbah Law
Template:   astra
Version:    2.0.0
*/

/* ────────────────────────────────────────────────
   VARIABLES
──────────────────────────────────────────────── */
:root {
  --c-b:   #7B1C3A;
  --c-bd:  #5C1228;
  --c-bl:  #9A2448;
  --c-o:   #C9A84C;
  --c-ol:  #E2C97A;
  --c-od:  #A8893A;
  --c-cr:  #F5EDD8;
  --c-wh:  #FFFFFF;
  --c-bg:  #FAFAF8;
  --c-bg2: #F4F0E8;
  --c-tx:  #1A0A0F;
  --c-tx2: #5A4A50;
  --c-sh:  rgba(123,28,58,0.10);
  --f-h:   'Playfair Display', Georgia, serif;
  --f-b:   'Raleway', 'Helvetica Neue', sans-serif;
  --tr:    all 0.3s cubic-bezier(0.4,0,0.2,1);
  --hh:    80px;
  --radius: 12px;
}

/* ────────────────────────────────────────────────
   RESET / BASE
──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { font-size: 100%; scroll-behavior: smooth; }
body {
  background: var(--c-bg);
  color: var(--c-tx);
  font-family: var(--f-b);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1,h2,h3,h4,h5,h6 {
  font-family: var(--f-h);
  color: var(--c-b);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0.6em;
}
h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.6rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); }
p  { color: var(--c-tx2); margin-bottom: 1.2em; line-height: 1.8; }
a  { color: var(--c-b); text-decoration: none; transition: var(--tr); }
a:hover { color: var(--c-od); }
img { max-width: 100%; height: auto; display: block; }

/* ────────────────────────────────────────────────
   HEADER FIXE
──────────────────────────────────────────────── */
#masthead.clc-site-header,
.clc-site-header {
  position: sticky !important;
  top: 0 !important;
  z-index: 9990 !important;
  background: var(--c-bd) !important;
  border-bottom: 1px solid rgba(201,168,76,0.25) !important;
  box-shadow: 0 2px 24px rgba(0,0,0,0.3) !important;
  transition: all 0.3s ease !important;
}
.clc-site-header.scrolled {
  --hh: 64px;
  background: rgba(92,18,40,0.97) !important;
  backdrop-filter: blur(12px);
}
.clc-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: var(--hh);
  display: flex !important;
  align-items: center !important;
  gap: 2rem;
  transition: height 0.3s ease;
}
/* Logo */
.clc-header-brand { flex-shrink: 0; display: flex; align-items: center; }
.clc-header-brand .custom-logo { height: 52px !important; width: auto !important; }
.clc-brand-link    { text-decoration: none; display: flex; flex-direction: column; line-height: 1.2; }
.clc-brand-name    { font-family: var(--f-h); font-size: 1.15rem; font-weight: 700; color: var(--c-cr); }
.clc-brand-desc    { font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--c-o); }

/* Nav desktop */
.clc-nav { flex: 1; display: flex !important; justify-content: center; }
ul.clc-nav-menu {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
ul.clc-nav-menu > li { display: flex !important; align-items: center; position: relative; }
ul.clc-nav-menu > li > a {
  display: inline-flex !important;
  align-items: center;
  color: rgba(245,237,216,0.82) !important;
  font-size: 0.75rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  padding: 0 15px !important;
  height: var(--hh);
  text-decoration: none !important;
  transition: color 0.2s;
  white-space: nowrap;
  position: relative;
}
ul.clc-nav-menu > li > a::after {
  content: "";
  position: absolute;
  bottom: 0; left: 15px; right: 15px;
  height: 2px;
  background: var(--c-o);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}
ul.clc-nav-menu > li > a:hover,
ul.clc-nav-menu > li.current-menu-item > a,
ul.clc-nav-menu > li.current-menu-ancestor > a { color: var(--c-o) !important; }
ul.clc-nav-menu > li > a:hover::after,
ul.clc-nav-menu > li.current-menu-item > a::after { transform: scaleX(1); }

/* Sous-menu */
ul.clc-nav-menu .sub-menu {
  display: none !important;
  position: absolute !important;
  top: 100% !important; left: 0 !important;
  background: var(--c-bd) !important;
  min-width: 220px !important;
  border-top: 2px solid var(--c-o) !important;
  border-radius: 0 0 8px 8px !important;
  box-shadow: 0 16px 40px rgba(0,0,0,0.3) !important;
  z-index: 9999 !important;
  list-style: none !important;
  margin: 0 !important; padding: 6px 0 !important;
}
ul.clc-nav-menu li.menu-item-has-children:hover > .sub-menu,
ul.clc-nav-menu li.menu-item-has-children:focus-within > .sub-menu { display: block !important; }
ul.clc-nav-menu .sub-menu li a {
  display: block !important;
  padding: 10px 20px !important;
  color: var(--c-cr) !important;
  font-size: 0.82rem !important;
  text-transform: none !important;
  height: auto !important;
  border-bottom: 1px solid rgba(201,168,76,0.1) !important;
  transition: background 0.15s, color 0.15s !important;
}
ul.clc-nav-menu .sub-menu li a:hover { background: rgba(201,168,76,0.12) !important; color: var(--c-o) !important; }
ul.clc-nav-menu .sub-menu li a::after { display: none !important; }
ul.clc-nav-menu .dropdown-menu-toggle,
ul.clc-nav-menu .ast-menu-toggle,
ul.clc-nav-menu .ast-icon { display: none !important; }

/* Bouton RDV */
.clc-header-cta { flex-shrink: 0; display: flex; align-items: center; }
.clc-btn-rdv {
  background: var(--c-o);
  color: var(--c-bd) !important;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 10px 22px; border-radius: 4px;
  text-decoration: none !important; white-space: nowrap;
  transition: background 0.2s, transform 0.2s;
}
.clc-btn-rdv:hover { background: var(--c-ol); transform: translateY(-1px); }

/* Hamburger */
.clc-hamburger {
  display: none; flex-direction: column; justify-content: center;
  align-items: center; gap: 5px; background: none; border: none;
  cursor: pointer; padding: 8px; margin-left: auto;
}
.clc-hamburger span { display: block; width: 24px; height: 2px; background: var(--c-cr); border-radius: 2px; transition: var(--tr); }
.clc-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.clc-hamburger.active span:nth-child(2) { opacity: 0; }
.clc-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Menu mobile */
.clc-mobile-menu { display: none; background: var(--c-bd); }
.clc-mobile-menu.open { display: block; }
ul.clc-mobile-nav-menu { list-style: none; margin: 0; padding: 8px 0; }
ul.clc-mobile-nav-menu li a { display: block; padding: 13px 24px; color: var(--c-cr); font-size: 0.9rem; border-bottom: 1px solid rgba(255,255,255,0.05); }
ul.clc-mobile-nav-menu li a:hover { color: var(--c-o); }
ul.clc-mobile-nav-menu .sub-menu { padding-left: 16px; }
ul.clc-mobile-nav-menu .ast-icon,
ul.clc-mobile-nav-menu .dropdown-menu-toggle,
ul.clc-mobile-nav-menu .ast-menu-toggle { display: none !important; }

/* ────────────────────────────────────────────────
   ASTRA LAYOUT OVERRIDES
──────────────────────────────────────────────── */
.entry-content { max-width: 100% !important; padding: 0 !important; }
.ast-no-sidebar.ast-full-width-layout .site-content { padding: 0 !important; }
.ast-separate-container .ast-article-post { max-width: 100% !important; }
#page { display: flex; flex-direction: column; min-height: 100vh; }
.site-content { flex: 1; }

/* ────────────────────────────────────────────────
   BOUTONS
──────────────────────────────────────────────── */
.clc-btn {
  display: inline-block;
  font-family: var(--f-b); font-weight: 700;
  font-size: 0.8rem; letter-spacing: 0.14em;
  text-transform: uppercase; text-decoration: none;
  padding: 14px 32px; border-radius: 4px;
  transition: var(--tr); cursor: pointer; white-space: nowrap;
}
.clc-btn-gold  { background: var(--c-o); color: var(--c-bd); border: 2px solid var(--c-o); }
.clc-btn-gold:hover { background: var(--c-ol); color: var(--c-bd); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.35); }
.clc-btn-ghost { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.5); }
.clc-btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.clc-btn-dark  { background: var(--c-b); color: var(--c-cr); border: 2px solid transparent; }
.clc-btn-dark:hover { background: var(--c-bd); transform: translateY(-2px); }

/* ────────────────────────────────────────────────
   UTILITAIRES
──────────────────────────────────────────────── */
.clc-container { max-width: 1140px; margin: 0 auto; padding: 0 28px; }
.clc-section    { padding: 96px 0; }
.clc-section-light { background: #fff; }
.clc-section-cream { background: var(--c-bg2); }
.clc-section-dark  { background: var(--c-b); }

.clc-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.68rem; letter-spacing: 0.22em;
  text-transform: uppercase; font-weight: 700;
  color: var(--c-od); margin-bottom: 14px;
}
.clc-label::before, .clc-label::after {
  content: ''; width: 28px; height: 1px; background: var(--c-o); opacity: 0.6;
}
.clc-heading { text-align: center; max-width: 620px; margin: 0 auto 64px; }
.clc-heading h2 { margin-bottom: 14px; }
.clc-heading p { font-size: 1rem; color: var(--c-tx2); }
.clc-divider-gold {
  width: 52px; height: 3px;
  background: linear-gradient(90deg, var(--c-b), var(--c-o));
  border-radius: 2px; margin: 18px auto 0;
}

/* ────────────────────────────────────────────────
   ANIMATIONS
──────────────────────────────────────────────── */
@keyframes fadeUp   { from { opacity:0; transform:translateY(36px); } to { opacity:1; transform:none; } }
@keyframes fadeIn   { from { opacity:0; } to { opacity:1; } }
@keyframes fadeLeft { from { opacity:0; transform:translateX(-36px); } to { opacity:1; transform:none; } }
@keyframes fadeRight{ from { opacity:0; transform:translateX(36px); } to { opacity:1; transform:none; } }
@keyframes scaleIn  { from { opacity:0; transform:scale(0.88); } to { opacity:1; transform:scale(1); } }
@keyframes pulse    { 0%,100% { box-shadow:0 0 0 0 rgba(201,168,76,0.45); } 60% { box-shadow:0 0 0 14px transparent; } }
@keyframes float    { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-8px); } }
@keyframes lineGrow { from { width:0; } to { width:calc(100% - 88px); } }
@keyframes heroIn   { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:none; } }

[data-reveal]            { opacity:0; transform:translateY(32px); transition: opacity 0.75s ease, transform 0.75s ease; }
[data-reveal="left"]     { transform:translateX(-32px); }
[data-reveal="right"]    { transform:translateX(32px); }
[data-reveal="scale"]    { transform:scale(0.9); }
[data-reveal="fade"]     { transform:none; }
[data-reveal].revealed   { opacity:1 !important; transform:none !important; }

/* ════════════════════════════════════════════════
   HERO — PHOTO + OVERLAY PREMIUM
════════════════════════════════════════════════ */
.clc-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--c-bd);
}
.clc-hero-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  background-attachment: fixed;
  transform-origin: center;
  transition: transform 0.1s linear;
}
.clc-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    rgba(92,18,40,0.92) 0%,
    rgba(92,18,40,0.75) 40%,
    rgba(26,4,16,0.55) 100%
  );
}
.clc-hero-overlay2 {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 55%, rgba(10,2,6,0.65) 100%);
}
.clc-hero-inner {
  position: relative; z-index: 3;
  max-width: 780px;
  padding: 140px 28px 100px 80px;
}
.clc-hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 100px;
  padding: 6px 18px 6px 10px;
  margin-bottom: 28px;
  animation: fadeIn 0.8s ease 0.3s both;
}
.clc-hero-badge-dot {
  width: 8px; height: 8px;
  background: var(--c-o); border-radius: 50%;
  animation: pulse 2.5s infinite;
}
.clc-hero-badge span {
  font-size: 0.7rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--c-o); font-weight: 600;
}
.clc-hero h1 {
  color: #fff;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  line-height: 1.06;
  margin-bottom: 8px;
  animation: heroIn 0.9s ease 0.5s both;
}
.clc-hero h1 em {
  display: block; font-style: italic; color: var(--c-o);
}
.clc-hero-tagline {
  font-size: 0.72rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: rgba(201,168,76,0.8);
  font-weight: 500; margin-bottom: 24px;
  animation: heroIn 0.9s ease 0.7s both;
}
.clc-hero-desc {
  color: rgba(255,255,255,0.68);
  font-size: 1.05rem; line-height: 1.8;
  max-width: 500px;
  margin-bottom: 40px;
  animation: heroIn 0.9s ease 0.9s both;
}
.clc-hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  animation: heroIn 0.9s ease 1.1s both;
}
.clc-hero-scroll {
  position: absolute; bottom: 36px; left: 80px; z-index: 3;
  display: flex; flex-direction: column; align-items: flex-start; gap: 8px;
  animation: fadeIn 1s ease 1.6s both;
}
.clc-hero-scroll-label {
  font-size: 0.64rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: rgba(255,255,255,0.35); writing-mode: horizontal-tb;
}
.clc-hero-scroll-line {
  width: 1px; height: 56px;
  background: linear-gradient(to bottom, rgba(201,168,76,0.6), transparent);
  animation: float 2.5s ease-in-out infinite;
}

/* ════════════════════════════════════════════════
   BANDE STATS (fond blanc, bordure or)
════════════════════════════════════════════════ */
.clc-stats-band {
  background: #fff;
  border-bottom: 3px solid var(--c-bg2);
  position: relative;
  z-index: 2;
}
.clc-stats-band::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--c-b), var(--c-o), var(--c-b));
}
.clc-stats-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  max-width: 1140px;
  margin: 0 auto;
}
.clc-stat {
  padding: 52px 40px;
  text-align: center;
  border-right: 1px solid rgba(123,28,58,0.07);
  transition: background 0.25s;
}
.clc-stat:last-child { border-right: none; }
.clc-stat:hover { background: #fdfaf5; }
.clc-stat-icon {
  width: 56px; height: 56px;
  background: var(--c-b);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px; color: var(--c-o);
  box-shadow: 0 8px 24px rgba(123,28,58,0.2);
}
.clc-stat-val {
  font-family: var(--f-h);
  font-size: 3rem; font-weight: 700;
  color: var(--c-b); line-height: 1;
  letter-spacing: -0.02em;
}
.clc-stat-lbl {
  font-size: 0.72rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--c-od);
  font-weight: 600; margin-top: 8px;
}
.clc-stat-sub {
  font-size: 0.82rem; color: var(--c-tx2);
  margin-top: 4px; line-height: 1.4;
}

/* ════════════════════════════════════════════════
   SERVICES — 3 cartes photo + overlay
════════════════════════════════════════════════ */
.clc-services {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}
.clc-svc {
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(123,28,58,0.07);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.35s cubic-bezier(0.34,1.4,0.64,1), box-shadow 0.35s ease;
  display: flex; flex-direction: column;
}
.clc-svc:hover { transform: translateY(-10px); box-shadow: 0 28px 60px rgba(123,28,58,0.16); }
.clc-svc-thumb {
  height: 200px;
  position: relative;
  overflow: hidden;
  background: var(--c-bd);
}
.clc-svc-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.clc-svc:hover .clc-svc-thumb img { transform: scale(1.06); }
.clc-svc-thumb-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(92,18,40,0.3), rgba(92,18,40,0.7));
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s;
}
.clc-svc:hover .clc-svc-thumb-overlay { background: linear-gradient(to bottom, rgba(92,18,40,0.2), rgba(92,18,40,0.6)); }
.clc-svc-thumb-icon {
  width: 60px; height: 60px;
  background: rgba(201,168,76,0.9);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--c-bd);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  transition: transform 0.3s, background 0.3s;
}
.clc-svc:hover .clc-svc-thumb-icon { transform: scale(1.12); background: var(--c-o); }
.clc-svc-body { padding: 28px 28px 32px; flex: 1; display: flex; flex-direction: column; }
.clc-svc-num {
  font-family: var(--f-h); font-size: 0.72rem;
  color: var(--c-o); letter-spacing: 0.15em;
  font-weight: 600; margin-bottom: 10px;
}
.clc-svc-body h3 { font-size: 1.15rem; color: var(--c-b); margin-bottom: 10px; }
.clc-svc-body p  { font-size: 0.88rem; line-height: 1.7; color: var(--c-tx2); flex: 1; margin-bottom: 20px; }
.clc-svc-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 22px; }
.clc-tag {
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.07em;
  text-transform: uppercase; padding: 4px 10px; border-radius: 100px;
  background: rgba(123,28,58,0.06); color: var(--c-b);
  border: 1px solid rgba(123,28,58,0.1);
}
.clc-svc-link {
  font-size: 0.75rem; font-weight: 700; color: var(--c-b);
  letter-spacing: 0.08em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: auto; transition: color 0.2s, gap 0.2s;
}
.clc-svc-link::after { content: '→'; }
.clc-svc:hover .clc-svc-link { color: var(--c-o); gap: 10px; }

/* ════════════════════════════════════════════════
   À PROPOS — PHOTO + TEXTE
════════════════════════════════════════════════ */
.clc-about {
  background: var(--c-b);
  padding: 0;
  position: relative;
  overflow: hidden;
}
.clc-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
/* Photo côté gauche : plein bloc */
.clc-about-photo {
  position: relative;
  min-height: 600px;
  overflow: hidden;
}
.clc-about-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
}
.clc-about-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--c-b) 100%);
}
.clc-about-photo-badge {
  position: absolute; bottom: 32px; left: 32px;
  background: var(--c-o); color: var(--c-bd);
  border-radius: 10px; padding: 16px 22px;
  text-align: center; box-shadow: 0 8px 28px rgba(0,0,0,0.25);
}
.clc-about-photo-badge strong {
  display: block; font-family: var(--f-h);
  font-size: 2rem; line-height: 1; margin-bottom: 4px;
}
.clc-about-photo-badge span { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; }
/* Texte côté droit */
.clc-about-text {
  padding: 80px 60px 80px 56px;
  display: flex; flex-direction: column; justify-content: center;
}
.clc-about-text .clc-label { color: var(--c-o); }
.clc-about-text .clc-label::before, .clc-about-text .clc-label::after { background: var(--c-o); }
.clc-about-text h2 { color: #fff; font-size: clamp(1.7rem,2.8vw,2.4rem); margin-bottom: 20px; }
.clc-about-text h2 em { color: var(--c-o); font-style: italic; }
.clc-about-text > p { color: rgba(245,237,216,0.75); line-height: 1.85; font-size: 0.97rem; margin-bottom: 14px; }
.clc-creds {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 8px; margin: 24px 0 36px;
}
.clc-cred {
  display: flex; align-items: flex-start; gap: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: 8px; padding: 11px 14px;
  transition: background 0.2s;
}
.clc-cred:hover { background: rgba(201,168,76,0.08); }
.clc-cred::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--c-o); border-radius: 50%;
  flex-shrink: 0; margin-top: 7px;
}
.clc-cred span { font-size: 0.8rem; color: rgba(245,237,216,0.82); line-height: 1.4; }

/* ════════════════════════════════════════════════
   PROCESSUS 3 ÉTAPES
════════════════════════════════════════════════ */
.clc-process-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 0; position: relative;
}
.clc-process-connector {
  position: absolute;
  top: 44px; left: calc(16.66% + 44px); right: calc(16.66% + 44px);
  height: 2px; background: rgba(123,28,58,0.1); overflow: hidden;
}
.clc-process-connector-fill {
  height: 100%; width: 0;
  background: linear-gradient(90deg, var(--c-b), var(--c-o));
  transition: width 1.6s cubic-bezier(0.4,0,0.2,1);
}
.clc-process-connector-fill.animate { width: 100%; }
.clc-process-step { padding: 0 32px; text-align: center; position: relative; z-index: 1; }
.clc-ps-circle {
  width: 88px; height: 88px; border-radius: 50%;
  background: #fff; border: 2px solid rgba(123,28,58,0.1);
  box-shadow: 0 8px 28px rgba(123,28,58,0.1);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px; color: var(--c-b);
  transition: all 0.35s ease;
}
.clc-process-step:hover .clc-ps-circle {
  background: var(--c-b); color: var(--c-o);
  transform: scale(1.1); box-shadow: 0 16px 40px rgba(123,28,58,0.3);
}
.clc-process-step h3 { font-size: 1.05rem; color: var(--c-b); margin-bottom: 10px; }
.clc-process-step p  { font-size: 0.87rem; color: var(--c-tx2); line-height: 1.7; }

/* ════════════════════════════════════════════════
   CTA FINAL — PHOTO BACKGROUND
════════════════════════════════════════════════ */
.clc-cta-section {
  position: relative;
  padding: 120px 0;
  text-align: center;
  overflow: hidden;
  background: var(--c-bd);
}
.clc-cta-photo {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  background-attachment: fixed;
}
.clc-cta-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(92,18,40,0.93), rgba(26,4,16,0.88));
}
.clc-cta-inner {
  position: relative; z-index: 2;
  max-width: 660px; margin: 0 auto; padding: 0 28px;
}
.clc-cta-icon {
  width: 80px; height: 80px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 32px; color: var(--c-o);
  animation: pulse 3s ease-in-out infinite;
}
.clc-cta-section h2 { color: #fff; font-size: clamp(2rem,4vw,3.2rem); margin-bottom: 16px; }
.clc-cta-section h2 em { color: var(--c-o); font-style: italic; }
.clc-cta-section p { color: rgba(255,255,255,0.6); font-size: 1rem; margin-bottom: 40px; line-height: 1.75; }
.clc-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.clc-cta-info {
  display: flex; gap: 32px; justify-content: center;
  flex-wrap: wrap; margin-top: 36px;
}
.clc-cta-info-item {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.5); font-size: 0.85rem;
}
.clc-cta-info-item svg { color: var(--c-o); flex-shrink: 0; }

/* ════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════ */
.clc-footer { background: #12050a; color: rgba(255,255,255,0.75); }
.clc-footer-main {
  max-width: 1140px; margin: 0 auto; padding: 72px 28px 56px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 48px;
}
.clc-ft-brand-name {
  font-family: var(--f-h); font-size: 1.3rem; font-weight: 700;
  color: var(--c-o); display: block; margin-bottom: 4px;
}
.clc-ft-brand-tag {
  font-size: 0.68rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(201,168,76,0.6);
  margin-bottom: 16px; display: block;
}
.clc-ft-desc { font-size: 0.88rem; color: rgba(255,255,255,0.5); line-height: 1.75; margin-bottom: 24px; }
.clc-ft-socials { display: flex; gap: 10px; }
.clc-ft-social {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-o); text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.clc-ft-social:hover { background: var(--c-o); color: #12050a; }
.clc-ft-col h4 {
  font-family: var(--f-h); font-size: 0.85rem; font-weight: 700;
  color: var(--c-o); text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 20px; padding-bottom: 10px;
  border-bottom: 1px solid rgba(201,168,76,0.18);
}
.clc-ft-links { list-style: none; margin: 0; padding: 0; }
.clc-ft-links li { margin-bottom: 9px; }
.clc-ft-links a {
  color: rgba(255,255,255,0.55); font-size: 0.88rem;
  text-decoration: none; transition: color 0.2s;
  display: flex; align-items: center; gap: 6px;
}
.clc-ft-links a::before { content: '›'; color: var(--c-o); font-weight: bold; }
.clc-ft-links a:hover { color: var(--c-o); }
.clc-ft-contact { font-style: normal; }
.clc-ft-contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 12px; font-size: 0.87rem;
  color: rgba(255,255,255,0.55);
}
.clc-ft-contact-item svg { color: var(--c-o); flex-shrink: 0; margin-top: 2px; }
.clc-footer-bottom {
  border-top: 1px solid rgba(201,168,76,0.12);
  padding: 20px 28px;
  max-width: 1140px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px;
}
.clc-footer-bottom p, .clc-footer-bottom a {
  font-size: 0.78rem; color: rgba(255,255,255,0.3); margin: 0;
}
.clc-footer-bottom a:hover { color: var(--c-o); }

/* ════════════════════════════════════════════════
   WHATSAPP
════════════════════════════════════════════════ */
.clc-wa {
  position: fixed; bottom: 26px; right: 26px;
  width: 56px; height: 56px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  z-index: 9999; text-decoration: none !important; transition: var(--tr);
}
.clc-wa:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(37,211,102,0.55); }

/* ════════════════════════════════════════════════
   HEADER SHRINK JS
════════════════════════════════════════════════ */
#masthead.scrolled { --hh: 62px !important; }

/* ════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  ul.clc-nav-menu > li > a { padding: 0 10px !important; font-size: 0.7rem !important; }
}
@media (max-width: 860px) {
  .clc-nav, .clc-header-cta { display: none !important; }
  .clc-hamburger { display: flex !important; }
  .clc-hero-inner { padding: 120px 28px 80px; }
  .clc-hero-scroll { left: 28px; }
  .clc-services { grid-template-columns: 1fr; }
  .clc-about-grid { grid-template-columns: 1fr; }
  .clc-about-photo { min-height: 400px; }
  .clc-about-text { padding: 56px 28px; }
  .clc-about-photo-overlay { background: linear-gradient(to bottom, transparent 50%, var(--c-b) 100%); }
  .clc-process-grid { grid-template-columns: 1fr; gap: 40px; }
  .clc-process-connector { display: none; }
  .clc-stats-grid { grid-template-columns: 1fr; }
  .clc-stat { border-right: none; border-bottom: 1px solid rgba(123,28,58,0.07); }
  .clc-stat:last-child { border-bottom: none; }
  .clc-footer-main { grid-template-columns: 1fr 1fr; gap: 32px; }
  .clc-creds { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .clc-hero h1 { font-size: 2.4rem; }
  .clc-hero-actions { flex-direction: column; }
  .clc-footer-main { grid-template-columns: 1fr; }
  .clc-footer-bottom { flex-direction: column; text-align: center; }
  .clc-cta-btns { flex-direction: column; align-items: center; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  [data-reveal] { opacity:1; transform:none; }
}


/* ══════════════════════════════════════════════════════════
   FOOTER v2 — classes synchronisées avec footer.php
   ══════════════════════════════════════════════════════════ */
.clc-footer {
  background: #12050a;
  color: rgba(255,255,255,0.7);
}
.clc-footer-main {
  max-width: 1140px;
  margin: 0 auto;
  padding: 72px 28px 56px;
  display: grid;
  grid-template-columns: 1.9fr 1fr 1fr 1.3fr;
  gap: 48px;
}
/* Brand */
.clc-ft-brand a { text-decoration: none; display: block; margin-bottom: 14px; }
.clc-ft-brand-name {
  display: block;
  font-family: var(--f-h);
  font-size: 1.25rem; font-weight: 700;
  color: var(--c-o); letter-spacing: 0.02em;
}
.clc-ft-brand-tag {
  display: block;
  font-size: 0.66rem; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.55);
  margin-top: 3px;
}
.clc-ft-desc {
  font-size: 0.87rem; line-height: 1.75;
  color: rgba(255,255,255,0.45);
  margin-bottom: 22px;
}
.clc-ft-socials { display: flex; gap: 10px; }
.clc-ft-social {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.22);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-o); text-decoration: none;
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
}
.clc-ft-social:hover { background: var(--c-o); color: #12050a; }
/* Colonnes */
.clc-ft-col h4 {
  font-family: var(--f-h); font-size: 0.82rem; font-weight: 700;
  color: var(--c-o); text-transform: uppercase; letter-spacing: 0.12em;
  margin: 0 0 18px; padding-bottom: 10px;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.clc-ft-links { list-style: none; margin: 0; padding: 0; }
.clc-ft-links li { margin-bottom: 9px; }
.clc-ft-links a {
  color: rgba(255,255,255,0.5); font-size: 0.87rem;
  text-decoration: none; transition: color 0.2s;
  display: flex; align-items: center; gap: 6px;
}
.clc-ft-links a::before { content: '›'; color: var(--c-o); font-weight: bold; }
.clc-ft-links a:hover { color: var(--c-o); }
/* Contact */
.clc-ft-contact { font-style: normal; }
.clc-ft-contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 11px;
  color: rgba(255,255,255,0.5); font-size: 0.87rem; line-height: 1.4;
}
.clc-ft-contact-item svg { color: var(--c-o); flex-shrink: 0; margin-top: 1px; }
/* Barre du bas */
.clc-footer-bottom {
  border-top: 1px solid rgba(201,168,76,0.1);
}
.clc-footer-bottom-inner {
  max-width: 1140px; margin: 0 auto;
  padding: 18px 28px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 8px;
}
.clc-footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.28);
  margin: 0;
}
.clc-footer-bottom a {
  color: rgba(255,255,255,0.28); font-size: 0.78rem;
  text-decoration: none; transition: color 0.2s;
}
.clc-footer-bottom a:hover { color: var(--c-o); }
.clc-footer-bottom span { color: rgba(255,255,255,0.2); margin: 0 6px; }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE COMPLET — mobile first
   ══════════════════════════════════════════════════════════ */

/* ── 1024px ── */
@media (max-width: 1024px) {
  ul.clc-nav-menu > li > a { padding: 0 11px !important; font-size: 0.72rem !important; }
  .clc-footer-main { grid-template-columns: 1.5fr 1fr 1fr; gap: 32px; }
  .clc-ft-brand { grid-column: 1 / -1; }
  .clc-footer-main > .clc-ft-col:last-child { grid-column: 1 / -1; }
}

/* ── 900px ── */
@media (max-width: 900px) {
  /* Stats */
  .clc-stats-grid { grid-template-columns: 1fr; }
  .clc-stat { border-right: none; border-bottom: 1px solid rgba(123,28,58,0.07); padding: 36px 28px; }
  .clc-stat:last-child { border-bottom: none; }
  /* Services */
  .clc-services { grid-template-columns: 1fr; gap: 20px; }
  /* About */
  .clc-about-grid { grid-template-columns: 1fr; }
  .clc-about-photo { min-height: 380px; }
  .clc-about-photo-overlay { background: linear-gradient(to bottom, transparent 40%, var(--c-b) 100%) !important; }
  .clc-about-text { padding: 52px 28px 56px; }
  .clc-creds { grid-template-columns: 1fr; gap: 8px; }
  /* Process */
  .clc-process-grid { grid-template-columns: 1fr; gap: 48px; }
  .clc-process-connector { display: none; }
  /* Footer */
  .clc-footer-main { grid-template-columns: 1fr 1fr; gap: 28px; padding: 48px 24px 40px; }
  .clc-ft-brand { grid-column: 1 / -1; }
}

/* ── 860px — mobile nav ── */
@media (max-width: 860px) {
  .clc-nav,
  .clc-header-cta { display: none !important; }
  .clc-hamburger { display: flex !important; }
  /* Hero */
  .clc-hero { min-height: 100svh; min-height: 100vh; }
  .clc-hero-inner { padding: 100px 24px 80px 24px; }
  .clc-hero h1 { font-size: clamp(2.2rem, 9vw, 3rem); }
  .clc-hero-scroll { left: 24px; }
  .clc-hero-actions { flex-direction: column; align-items: flex-start; }
  .clc-hero-actions .clc-btn { width: 100%; text-align: center; }
  /* Heading centré sur mobile */
  .clc-heading { padding: 0 8px; }
}

/* ── 600px ── */
@media (max-width: 600px) {
  /* Sections */
  .clc-section { padding: 64px 0; }
  .clc-container { padding: 0 18px; }
  /* Hero */
  .clc-hero h1 { font-size: 2.1rem; }
  .clc-hero-desc { font-size: 0.95rem; }
  /* Stats */
  .clc-stat { padding: 28px 18px; }
  .clc-stat-val { font-size: 2.4rem; }
  /* Services */
  .clc-svc-thumb { height: 180px; }
  .clc-svc-body { padding: 22px 20px 26px; }
  /* About */
  .clc-about-photo { min-height: 300px; }
  .clc-about-text { padding: 40px 18px; }
  .clc-about-text h2 { font-size: 1.7rem; }
  /* Process */
  .clc-process-step { padding: 0 8px; }
  .clc-ps-circle { width: 72px; height: 72px; }
  /* CTA */
  .clc-cta-section { padding: 80px 0; }
  .clc-cta-btns { flex-direction: column; align-items: center; }
  .clc-cta-btns .clc-btn { width: 100%; max-width: 280px; text-align: center; }
  .clc-cta-info { flex-direction: column; align-items: center; gap: 10px; }
  /* Footer */
  .clc-footer-main { grid-template-columns: 1fr; gap: 28px; padding: 40px 18px 32px; }
  .clc-footer-bottom-inner { flex-direction: column; text-align: center; gap: 6px; }
  /* Menu mobile */
  .clc-site-header { position: sticky !important; }
}

/* ── Très petit écran ── */
@media (max-width: 380px) {
  .clc-hero h1 { font-size: 1.9rem; }
  .clc-hero-badge { font-size: 0.6rem; }
}


/* ══════════════════════════════════════════════════════════
   FOOTER — même couleur que le menu (bordeaux foncé)
   ══════════════════════════════════════════════════════════ */
.clc-footer {
  background: var(--c-bd) !important;
  border-top: 1px solid rgba(201,168,76,0.2);
}
.clc-footer-bottom {
  background: rgba(0,0,0,0.25);
}

/* ══════════════════════════════════════════════════════════
   SUPPRIMER la barre "Accueil" / breadcrumb / page title
   ══════════════════════════════════════════════════════════ */
.entry-header,
.ast-breadcrumbs-wrapper,
.ast-archive-description,
.page-header,
header.entry-header,
.ast-page-title-bar,
.ast-hero-section,
.site-above-header-wrap,
.site-header-section .ast-site-identity,
.page .entry-header,
.home .entry-header,
.front-page .entry-header {
  display: none !important;
}
/* Supprimer le padding inutile en haut du contenu */
.site-content .ast-container,
.ast-no-sidebar #primary,
.ast-plain-container .site-content {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* ══════════════════════════════════════════════════════════
   MENU MOBILE OVERLAY — plein écran, slide depuis droite
   ══════════════════════════════════════════════════════════ */

/* Overlay fond sombre */
.clc-mob-overlay {
  position: fixed;
  inset: 0;
  z-index: 99990;
  visibility: hidden;
  pointer-events: none;
}
.clc-mob-overlay.open {
  visibility: visible;
  pointer-events: auto;
}

/* Backdrop flouté */
.clc-mob-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.clc-mob-overlay.open .clc-mob-backdrop {
  opacity: 1;
}

/* Panel latéral */
.clc-mob-panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(360px, 88vw);
  background: var(--c-bd);
  border-left: 1px solid rgba(201,168,76,0.2);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
.clc-mob-overlay.open .clc-mob-panel {
  transform: translateX(0);
}

/* En-tête du panel */
.clc-mob-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid rgba(201,168,76,0.15);
  flex-shrink: 0;
}
.clc-mob-logo { text-decoration: none; }
.clc-mob-logo .custom-logo { height: 44px !important; width: auto !important; }
.clc-mob-brand {
  font-family: var(--f-h);
  font-size: 1.05rem; font-weight: 700;
  color: var(--c-cr);
}
.clc-mob-close {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  color: var(--c-cr);
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
}
.clc-mob-close:hover { background: rgba(201,168,76,0.15); color: var(--c-o); }

/* Navigation mobile */
.clc-mob-nav {
  flex: 1;
  overflow-y: auto;
  padding: 16px 0;
  scrollbar-width: thin;
  scrollbar-color: rgba(201,168,76,0.3) transparent;
}
ul.clc-mob-menu {
  list-style: none;
  margin: 0; padding: 0;
}
ul.clc-mob-menu > li {
  border-bottom: 1px solid rgba(255,255,255,0.05);
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
/* Stagger animation */
.clc-mob-overlay.open ul.clc-mob-menu > li { opacity: 1; transform: translateX(0); }
.clc-mob-overlay.open ul.clc-mob-menu > li:nth-child(1) { transition-delay: 0.08s; }
.clc-mob-overlay.open ul.clc-mob-menu > li:nth-child(2) { transition-delay: 0.13s; }
.clc-mob-overlay.open ul.clc-mob-menu > li:nth-child(3) { transition-delay: 0.18s; }
.clc-mob-overlay.open ul.clc-mob-menu > li:nth-child(4) { transition-delay: 0.23s; }
.clc-mob-overlay.open ul.clc-mob-menu > li:nth-child(5) { transition-delay: 0.28s; }
.clc-mob-overlay.open ul.clc-mob-menu > li:nth-child(6) { transition-delay: 0.33s; }

ul.clc-mob-menu > li > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 24px;
  color: rgba(245,237,216,0.88);
  font-family: var(--f-h);
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s, padding-left 0.2s;
}
ul.clc-mob-menu > li > a:hover,
ul.clc-mob-menu > li.current-menu-item > a {
  color: var(--c-o);
  padding-left: 30px;
}
ul.clc-mob-menu > li.current-menu-item > a::before {
  content: '';
  width: 3px; height: 100%;
  background: var(--c-o);
  position: absolute; left: 0;
  border-radius: 0 2px 2px 0;
}
ul.clc-mob-menu > li { position: relative; }

/* Sous-menu mobile */
ul.clc-mob-menu .sub-menu {
  list-style: none; margin: 0; padding: 0;
  background: rgba(0,0,0,0.2);
  border-top: 1px solid rgba(255,255,255,0.04);
}
ul.clc-mob-menu .sub-menu li a {
  display: block;
  padding: 12px 24px 12px 36px;
  color: rgba(245,237,216,0.6);
  font-size: 0.88rem;
  text-decoration: none;
  transition: color 0.2s;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}
ul.clc-mob-menu .sub-menu li a::before {
  content: '›';
  color: var(--c-o);
  margin-right: 8px;
}
ul.clc-mob-menu .sub-menu li a:hover { color: var(--c-o); }
/* Masquer les flèches Astra */
ul.clc-mob-menu .ast-icon,
ul.clc-mob-menu .dropdown-menu-toggle,
ul.clc-mob-menu .ast-menu-toggle { display: none !important; }

/* Pied du panel */
.clc-mob-footer {
  padding: 20px 24px 28px;
  border-top: 1px solid rgba(201,168,76,0.15);
  flex-shrink: 0;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s ease 0.35s, transform 0.3s ease 0.35s;
}
.clc-mob-overlay.open .clc-mob-footer {
  opacity: 1;
  transform: translateY(0);
}
.clc-mob-rdv {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 24px;
  background: var(--c-o);
  color: var(--c-bd) !important;
  font-family: var(--f-b);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 8px;
  margin-bottom: 14px;
  transition: background 0.2s, transform 0.2s;
}
.clc-mob-rdv:hover { background: var(--c-ol); transform: translateY(-1px); }
.clc-mob-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 0.82rem;
}
.clc-mob-contact a { color: rgba(245,237,216,0.55); text-decoration: none; transition: color 0.2s; }
.clc-mob-contact a:hover { color: var(--c-o); }
.clc-mob-contact span { color: rgba(255,255,255,0.2); }

/* Empêcher scroll du body quand menu ouvert */
body.mob-menu-open { overflow: hidden; }

/* ══════════════════════════════════════════════════════════
   HAMBURGER ANIMÉ
   ══════════════════════════════════════════════════════════ */
.clc-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  cursor: pointer;
  padding: 10px 12px;
  margin-left: auto;
  flex-shrink: 0;
  transition: background 0.2s;
}
.clc-hamburger:hover { background: rgba(201,168,76,0.15); }
.clc-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--c-cr);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
  transform-origin: center;
}
.clc-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.clc-hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.clc-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════════════════════════
   UX AMÉLIORATIONS SUPPLÉMENTAIRES
   ══════════════════════════════════════════════════════════ */

/* Lien "En savoir plus" dans services */
.clc-svc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--c-b);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
}
.clc-svc-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--c-o);
  transition: width 0.3s ease;
}
.clc-svc:hover .clc-svc-link { color: var(--c-o); }
.clc-svc:hover .clc-svc-link::after { width: 100%; }

/* Smooth focus pour accessibilité */
:focus-visible {
  outline: 2px solid var(--c-o);
  outline-offset: 3px;
  border-radius: 3px;
}

/* Hero — amélioration du badge pulse */
.clc-hero-badge-dot {
  animation: pulse 2.5s ease-in-out infinite;
}

/* Breadcrumb Astra supprimé via display:none ci-dessus */
/* Extra sécurité pour le titre de page sur la homepage */
.home .page-title,
.front-page .page-title,
.page-id-7 .entry-header,
.page-id-7 .page-header,
.ast-page-builder-template .entry-header {
  display: none !important;
}

/* Amélioration des transitions de section */
.clc-section { position: relative; }
.clc-svc-thumb { border-radius: var(--radius) var(--radius) 0 0; }
.clc-svc { transition: transform 0.4s cubic-bezier(0.34,1.3,0.64,1), box-shadow 0.4s ease; }

/* ══════════════════════════════════════════════════════════
   MOBILE — affichage hamburger
   ══════════════════════════════════════════════════════════ */
@media (max-width: 860px) {
  .clc-hamburger { display: flex !important; }
  /* Masquer l'ancien menu mobile (remplacé par l'overlay) */
  .clc-mobile-menu { display: none !important; }
}


/* ══ POLISH UX — Expert Mobile ══ */

/* Overscroll : empêche le scroll du fond quand le panel est scrollé */
.clc-mob-nav {
  overscroll-behavior: contain;
}
.clc-mob-panel {
  overscroll-behavior: contain;
}

/* Accessibilité — réduire animations si préférence utilisateur */
@media (prefers-reduced-motion: reduce) {
  .clc-mob-overlay,
  .clc-mob-panel,
  .clc-mob-backdrop,
  ul.clc-mob-menu > li,
  .clc-mob-footer,
  .clc-hamburger span {
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }
}

/* Scrollbar panel mobile — discret */
.clc-mob-nav::-webkit-scrollbar { width: 4px; }
.clc-mob-nav::-webkit-scrollbar-track { background: transparent; }
.clc-mob-nav::-webkit-scrollbar-thumb { background: rgba(201,168,76,0.3); border-radius: 2px; }

/* Focus visible amélioré dans le panel mobile */
.clc-mob-panel :focus-visible {
  outline: 2px solid var(--c-o);
  outline-offset: 2px;
  border-radius: 3px;
}

/* Bouton hamburger : aria-expanded feedback visuel */
.clc-hamburger[aria-expanded="true"] {
  background: rgba(201,168,76,0.15);
}

/* Smooth scroll lock : éviter le saut de layout quand overflow:hidden */
body.mob-menu-open {
  overflow: hidden;
  padding-right: 0px; /* pas de scrollbar compensation nécessaire sur mobile */
}


/* ╔══════════════════════════════════════════════════════════╗
   ║  MOTION DESIGN & COULEURS PREMIUM — v2.3                ║
   ║  Maître Yasmine Chebbah                                  ║
   ╚══════════════════════════════════════════════════════════╝ */

/* ── 1. COULEURS SECTIONS — alternance enrichie ─────────────── */

/* Services : lin chaud texturé (au lieu de blanc pur) */
.clc-section.clc-section-light {
  background-color: #F7F2E8 !important;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.88' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23g)' opacity='0.025'/%3E%3C/svg%3E"),
    linear-gradient(180deg, #F7F2E8 0%, #F2EDE2 100%) !important;
  background-size: 300px 300px, cover !important;
}

/* Process : ivoire plus profond */
.clc-section.clc-section-cream {
  background-color: #EAE3D6 !important;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23g)' opacity='0.02'/%3E%3C/svg%3E"),
    linear-gradient(180deg, #EAE3D6 0%, #E4DBCC 100%) !important;
  background-size: 300px 300px, cover !important;
}

/* Stats band : blanc cassé doré */
.clc-stats-band {
  background-color: #FDFAF3 !important;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23g)' opacity='0.015'/%3E%3C/svg%3E") !important;
  background-size: 300px 300px !important;
}

/* About : grain sur fond bordeaux */
.clc-about {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23g)' opacity='0.04'/%3E%3C/svg%3E"),
    linear-gradient(135deg, var(--c-b) 0%, var(--c-bd) 100%);
  background-size: 300px 300px, cover;
}

/* ── 2. NOUVELLES KEYFRAMES ─────────────────────────────────── */

@keyframes shimmerLine {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}
@keyframes rotateSlow {
  to { transform: rotate(360deg); }
}
@keyframes lineGrowV {
  from { height: 0; opacity: 0; top: 80px; }
  to   { height: 100px; opacity: 1; top: 80px; }
}
@keyframes orbitDot {
  0%   { transform: rotate(0deg)   translateX(32px); }
  100% { transform: rotate(360deg) translateX(32px); }
}
@keyframes glowPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(201,168,76,0); }
  50%      { box-shadow: 0 0 0 8px rgba(201,168,76,0.12); }
}
@keyframes slideDown {
  from { opacity:0; transform: translateY(-16px); }
  to   { opacity:1; transform: translateY(0); }
}
@keyframes expandWidth {
  from { width: 0; }
  to   { width: 52px; }
}

/* ── 3. SÉPARATEURS DÉCORATIFS ──────────────────────────────── */

/* Ligne dégradée en bas du hero */
.clc-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--c-o)  25%,
    var(--c-b)  50%,
    var(--c-o)  75%,
    transparent 100%);
  z-index: 5;
}

/* Accent supérieur centré sur sections claires */
.clc-section.clc-section-light {
  position: relative;
}
.clc-section.clc-section-light::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 80px; height: 3px;
  background: linear-gradient(90deg, var(--c-b), var(--c-o));
  border-radius: 0 0 4px 4px;
}
.clc-section.clc-section-cream {
  position: relative;
}
.clc-section.clc-section-cream::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 80px; height: 3px;
  background: linear-gradient(90deg, var(--c-o), var(--c-b));
  border-radius: 0 0 4px 4px;
}

/* ── 4. HERO — CERCLES DÉCORATIFS FLOTTANTS ─────────────────── */

.clc-hero-overlay2::before {
  content: '';
  position: absolute;
  width: 560px; height: 560px;
  border: 1px solid rgba(201,168,76,0.09);
  border-radius: 50%;
  right: -80px; top: 50%;
  transform: translateY(-50%);
  animation: float 12s ease-in-out infinite;
  pointer-events: none; z-index: 1;
}
.clc-hero-overlay2::after {
  content: '';
  position: absolute;
  width: 320px; height: 320px;
  border: 1px solid rgba(201,168,76,0.06);
  border-radius: 50%;
  right: 60px; top: 50%;
  transform: translateY(-50%);
  animation: float 8s ease-in-out infinite 2s;
  pointer-events: none; z-index: 1;
}

/* ── 5. DIVIDER OR — SHIMMER ANIMÉ ──────────────────────────── */

.clc-divider-gold {
  overflow: hidden;
  position: relative;
}
.clc-divider-gold::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255,255,255,0.55) 50%,
    transparent 100%);
  background-size: 200% 100%;
  animation: shimmerLine 3s ease-in-out 1.5s infinite;
}

/* Divider animé à l'entrée (revealed) */
.clc-heading[data-reveal].revealed .clc-divider-gold {
  animation: expandWidth 0.8s cubic-bezier(0.4,0,0.2,1) 0.4s both;
}

/* ── 6. STATS — EFFETS ENRICHIS ─────────────────────────────── */

/* Icône avec bordure tournante au hover */
.clc-stat-icon {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
  z-index: 0;
}
.clc-stat-icon::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 18px;
  border: 2px solid transparent;
  border-top-color: var(--c-o);
  border-right-color: rgba(201,168,76,0.3);
  opacity: 0;
  transition: opacity 0.3s ease;
  animation: rotateSlow 2.5s linear infinite;
}
.clc-stat:hover .clc-stat-icon { transform: translateY(-4px); }
.clc-stat:hover .clc-stat-icon::after { opacity: 1; }

/* Valeur stat — glow bordeaux au reveal */
.clc-stat[data-reveal].revealed .clc-stat-val {
  animation: glowPulse 2s ease 0.5s 2;
}

/* ── 7. SERVICE CARDS — LIGNE TOP + TILT READY ─────────────── */

/* Ligne accent en haut qui s'étend au hover */
.clc-svc {
  position: relative;
  overflow: hidden;
}
.clc-svc::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-bd), var(--c-o), var(--c-bd));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
  z-index: 2;
}
.clc-svc:hover::before { transform: scaleX(1); }

/* Fond carte : teinte très légère au hover */
.clc-svc {
  transition: transform 0.4s cubic-bezier(0.34,1.3,0.64,1),
              box-shadow 0.4s ease,
              background 0.3s ease;
}
.clc-svc:hover {
  background: #fff !important;
}

/* ── 8. PROCESS — NUMÉROS DÉCORATIFS EN FOND ────────────────── */

.clc-process-step { position: relative; overflow: hidden; }

.clc-process-step:nth-child(1)::after { content: '01'; }
.clc-process-step:nth-child(2)::after { content: '02'; }
.clc-process-step:nth-child(3)::after { content: '03'; }
.clc-process-step::after {
  position: absolute;
  bottom: -24px; right: -8px;
  font-family: var(--f-h);
  font-size: 7.5rem;
  font-weight: 900;
  color: rgba(123,28,58,0.05);
  line-height: 1;
  pointer-events: none;
  letter-spacing: -0.04em;
  user-select: none;
  z-index: 0;
}
.clc-process-step > * { position: relative; z-index: 1; }

/* Cercle process : glow + flottement */
.clc-process-step[data-reveal].revealed .clc-ps-circle {
  animation: glowPulse 2.5s ease 0.6s 2;
}

/* ── 9. ABOUT — ACCENT VERTICAL OR ─────────────────────────── */

.clc-about-text {
  position: relative;
}
.clc-about-text::before {
  content: '';
  position: absolute;
  top: 80px; left: -1px;
  width: 2px; height: 0;
  background: linear-gradient(to bottom, var(--c-o), rgba(201,168,76,0.2));
  border-radius: 1px;
  transition: height 1.2s cubic-bezier(0.4,0,0.2,1) 0.6s;
}
.clc-about-text[data-reveal].revealed::before {
  height: 120px;
}

/* Quote décoratif en arrière-plan de la section about */
.clc-about-text::after {
  content: '\201C';
  position: absolute;
  top: 60px; right: 40px;
  font-family: var(--f-h);
  font-size: 12rem;
  line-height: 1;
  color: rgba(255,255,255,0.04);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.clc-about-text > * { position: relative; z-index: 1; }

/* ── 10. CTA — ICÔNE + ANIMATION ENTRÉE ────────────────────── */

.clc-cta-icon {
  animation: float 5s ease-in-out infinite;
  filter: drop-shadow(0 12px 28px rgba(201,168,76,0.25));
}
.clc-cta-inner[data-reveal].revealed {
  animation: slideDown 0.7s cubic-bezier(0.4,0,0.2,1) both;
}

/* ── 11. REVEAL — TRANSITIONS AMÉLIORÉES ───────────────────── */

/* Durée + easing plus élégants */
[data-reveal] {
  transition:
    opacity  0.9s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.9s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* Cards : spring effect */
.clc-svc[data-reveal],
.clc-stat[data-reveal],
.clc-process-step[data-reveal] {
  transition:
    opacity  0.75s cubic-bezier(0.34, 1.15, 0.64, 1),
    transform 0.75s cubic-bezier(0.34, 1.15, 0.64, 1) !important;
}

/* About photo + text : slide plus lent */
.clc-about-photo[data-reveal],
.clc-about-text[data-reveal] {
  transition:
    opacity  1.1s cubic-bezier(0.4, 0, 0.2, 1),
    transform 1.1s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* ── 12. BOUTON RDV — LUEUR PULSANTE ───────────────────────── */

.clc-btn-rdv,
.clc-btn-gold {
  position: relative;
  isolation: isolate;
}
.clc-btn-rdv::after,
.clc-btn-gold::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(201,168,76,0.5);
  animation: glowPulse 3s ease-in-out infinite;
  pointer-events: none;
}

/* ── 13. HEADER scrolled — transition fluide ────────────────── */

.clc-site-header.scrolled {
  box-shadow: 0 4px 40px rgba(0,0,0,0.4) !important;
}

/* ── 14. RÉDUCTIONS / RESPONSIVE ────────────────────────────── */

@media (max-width: 860px) {
  .clc-hero-overlay2::before,
  .clc-hero-overlay2::after { display: none; }
  .clc-process-step::after  { font-size: 4rem; }
  .clc-about-text::after    { font-size: 7rem; right: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  .clc-divider-gold::after,
  .clc-stat-icon::after,
  .clc-cta-icon,
  .clc-hero-overlay2::before,
  .clc-hero-overlay2::after,
  .clc-btn-rdv::after,
  .clc-btn-gold::after {
    animation: none !important;
  }
  [data-reveal] {
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }
}
