:root{
  /* Warm palette */
  --bg: #fbf6ef;        /* crème */
  --soft: #f3eadf;      /* sable */
  --card: #ffffff;      /* blanc chaud */
  --text: #2a211b;      /* brun */
  --muted:#6f5f54;      /* brun clair */
  --stroke: rgba(42,33,27,.12);

  --accent: #c7902f;    /* doré */
  --accent2:#b85c3a;    /* terracotta */
  --shadow: 0 18px 60px rgba(35, 20, 10, .10);

  --radius: 18px;
  --max: 1120px;
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:var(--font);
  color:var(--text);
  background:
    radial-gradient(900px 520px at 15% 0%, rgba(199,144,47,.22), transparent 55%),
    radial-gradient(800px 480px at 85% 10%, rgba(184,92,58,.16), transparent 50%),
    linear-gradient(180deg, var(--bg), var(--soft));
}

a{color:inherit; text-decoration:none}
.container{max-width:var(--max); margin:0 auto; padding:0 18px}
.lead{color:var(--muted); line-height:1.65}
.card{
  background:var(--card);
  border:1px solid var(--stroke);
  border-radius:var(--radius);
  box-shadow: var(--shadow);
}

/* TOPBAR */
.topbar{
  background: rgba(255,255,255,.55);
  border-bottom:1px solid var(--stroke);
}
.topbar__inner{
  display:flex; justify-content:space-between; gap:12px;
  padding:10px 0;
  flex-wrap:wrap;
}
.topbar__mini{color:var(--muted); font-size:13px}
.topbar__mini a{color:var(--text); text-decoration:underline}

/* NAV */
.nav{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(251,246,239,.72);
  border-bottom:1px solid var(--stroke);
}
.nav__inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:14px;
  padding:14px 0;
}
.brand{display:flex; gap:10px; align-items:center}
.brand__mark{
  width:42px; height:42px;
  display:grid; place-items:center;
  border-radius:14px;
  background: linear-gradient(135deg, rgba(199,144,47,.22), rgba(184,92,58,.15));
  border:1px solid rgba(199,144,47,.30);
  color: var(--text);
  font-weight:800;
  letter-spacing:.5px;
}
.brand__text{display:flex; flex-direction:column; line-height:1.1}
.brand__text small{color:var(--muted)}

.nav__links{display:flex; gap:16px; align-items:center}
.nav__links a{color:var(--muted); font-weight:600}
.nav__links a:hover{color:var(--text)}

.nav__cta{display:flex; gap:10px; align-items:center}
.nav__burger{
  display:none;
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.6);
  border-radius:12px;
  padding:10px 12px;
  cursor:pointer;
}

.nav__mobile{
  display:none;
  padding:14px 18px 18px;
  border-top:1px solid var(--stroke);
}
.nav__mobile a{
  display:block;
  padding:10px 0;
  color:var(--muted);
  font-weight:700;
}
.nav__mobileCta{display:flex; gap:10px; flex-wrap:wrap; margin-top:10px}
.nav__mobile.is-open{display:block}

/* BUTTONS */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 14px;
  border-radius:999px;
  border:1px solid rgba(199,144,47,.35);
  background: linear-gradient(180deg, rgba(199,144,47,.18), rgba(199,144,47,.10));
  color: var(--text);
  font-weight:700;
  cursor:pointer;
  transition: transform .12s ease, box-shadow .12s ease;
}
.btn:hover{transform: translateY(-1px)}
.btn--ghost{
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.65);
  color: var(--text);
}
.btn--sm{padding:10px 12px; font-size:13px}

/* HERO */
.hero{padding:44px 0 18px}
.hero__grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:16px;
  align-items:start;
}
.badge{
  display:inline-flex;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(184,92,58,.25);
  background: rgba(184,92,58,.08);
  color: var(--muted);
  font-weight:700;
  font-size:13px;
}
.hero h1{
  margin:14px 0 10px;
  font-size:40px;
  line-height:1.05;
}
.hero__actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:14px}
.hero__cards{
  margin-top:14px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
.miniCard{
  padding:12px;
  border-radius:16px;
  background: rgba(255,255,255,.7);border:1px dashed rgba(42,33,27,.18);
}
.miniCard span{display:block; color:var(--muted); margin-top:4px; font-size:13px}

/* CAROUSEL */
.hero__media{display:flex; flex-direction:column; gap:12px}
.carousel{overflow:hidden}
.carousel__slides{position:relative; height:380px}
.cSlide{
  position:absolute; inset:0;
  background-size:cover;
  background-position:center;
  opacity:0;
  transform: scale(1.02);
  transition: opacity .45s ease, transform .6s ease;
}
.cSlide.is-active{opacity:1; transform: scale(1)}
.cSlide::before{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.28));
}
.cSlide figcaption{
  position:absolute;
  left:16px; right:16px; bottom:16px;
  padding:16px;
  border-radius:16px;
  background: rgba(255,255,255,.82);
  border:1px solid rgba(255,255,255,.55);
}
.cSlide h3{margin:8px 0 6px; font-size:18px}
.cSlide p{margin:0; color:var(--muted); line-height:1.55; font-size:13px}
.chip{
  display:inline-flex;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(199,144,47,.35);
  background: rgba(199,144,47,.12);
  color: var(--text);
  font-weight:800;
  font-size:12px;
}

.cNav{
  position:absolute;
  top:50%;
  transform: translateY(-50%);
  width:44px; height:44px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.6);
  background: rgba(255,255,255,.75);
  color: var(--text);
  font-size:24px;
  cursor:pointer;
}
.cPrev{left:14px}
.cNext{right:14px}

.cDots{
  position:absolute;
  left:0; right:0; bottom:12px;
  display:flex; justify-content:center; gap:8px;
}
.cDot{
  width:10px; height:10px; border-radius:50%;
  border:1px solid rgba(42,33,27,.25);
  background: rgba(255,255,255,.65);
  cursor:pointer;
}
.cDot.is-active{
  border-color: rgba(199,144,47,.85);
  background: rgba(199,144,47,.55);
}

.hero__note{
  padding:14px;
  border-radius:16px;
  background: rgba(255,255,255,.75);
  border:1px solid rgba(42,33,27,.12);
}
.hero__note p{margin:6px 0 0; color:var(--muted); line-height:1.6; font-size:13px}

/* SECTIONS */
.section{padding:26px 0}
.section--soft{background: rgba(255,255,255,.45); border-top:1px solid rgba(42,33,27,.08); border-bottom:1px solid rgba(42,33,27,.08)}
.sectionHead{margin-bottom:14px}
.sectionHead h2{margin:0 0 8px; font-size:26px}

/* SPLIT */
.split{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:16px;
  align-items:start;
}

/* About */
.checks{margin:12px 0 0; padding-left:18px; color:var(--muted)}
.aboutCard{padding:16px}
.aboutCard h3{margin:0 0 6px}
.aboutCard p{margin:0 0 12px; color:var(--muted)}
.aboutActions{display:flex; gap:10px; flex-wrap:wrap}

/* Services */
.services{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.service{padding:16px}
.service__icon{font-size:22px}
.service h3{margin:10px 0 6px; font-size:16px}
.service p{margin:0 0 12px; color:var(--muted); line-height:1.55; font-size:13px}

/* Testimonies */
.testis{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.quote{padding:16px}
.quote p{margin:0 0 12px; color:var(--muted); line-height:1.7}
.quote__who{display:flex; gap:8px; align-items:baseline}
.quote__who span{color:var(--muted)}

.disclaimer{margin-top:14px; padding:16px}
.disclaimer p{margin:8px 0 0; color:var(--muted); line-height:1.65}

/* Contact */
.contactBox{padding:16px; margin-top:12px}
.contactRow{display:flex; gap:12px; align-items:flex-start; padding:10px 0; border-bottom:1px solid rgba(42,33,27,.08)}
.contactRow:last-child{border-bottom:none}
.contactRow span{font-size:18px}
.contactRow a{text-decoration:underline}

.form{padding:16px}
.form h3{margin:0 0 10px}
.form label{display:block; font-weight:700; font-size:13px}
.form input,.form select,.form textarea{
  width:100%;
  margin-top:6px;
  padding:12px;
  border-radius:14px;
  border:1px solid rgba(42,33,27,.14);
  background: rgba(255,255,255,.85);
  outline:none;
}
.form textarea{min-height:120px; resize:vertical}
.form small{display:block; color:var(--muted); margin-top:6px; line-height:1.55}

/* ===== Footer style (comme ton screenshot) ===== */
.site-footer{
  background:#111823;               /* fond sombre */
  color:rgba(255,255,255,.85);
  border-top:1px solid rgba(255,255,255,.06);
}

.footer-wrap{
  max-width:1120px;
  margin:0 auto;
  padding:28px 18px 18px;
}

.footer-grid{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap:22px;
  padding-bottom:18px;
  border-bottom:1px solid rgba(255,255,255,.08);
}

.footer-brand .brand-row{
  display:flex;
  gap:12px;
  align-items:flex-start;
}

.brand-icon{
  width:44px;height:44px;
  border-radius:12px;
  display:grid;
  place-items:center;
  font-weight:900;
  letter-spacing:.5px;
  background:#f3b21b;               /* jaune/or */
  color:#111823;
  box-shadow:0 12px 35px rgba(0,0,0,.25);
  flex:0 0 auto;
}

.brand-text h3{
  margin:0 0 6px;
  font-size:20px;
  letter-spacing:.2px;
  color:#ffffff;
}

.brand-text p{
  margin:0;
  color:rgba(255,255,255,.68);
  line-height:1.55;
  font-size:13px;
}

/* Titles */
.footer-title{
  margin:0 0 12px;
  font-size:12px;
  letter-spacing:1px;
  color:#f3b21b;                     /* titre jaune */
  text-transform:uppercase;
}

/* Links */
.footer-link{
  display:block;
  padding:8px 0;
  font-size:13px;
  color:rgba(255,255,255,.72);
  text-decoration:none;
}

.footer-link:hover{
  color:#ffffff;
  text-decoration:underline;
}

/* Bottom row */
.footer-bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:14px;
  padding-top:14px;
  flex-wrap:wrap;
}

.footer-copy{
  color:rgba(255,255,255,.6);
  font-size:13px;
}

/* Social */
.footer-social{
  display:flex;
  gap:10px;
  align-items:center;
}

.social-btn{
  width:38px;height:38px;
  display:grid;
  place-items:center;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  transition: transform .12s ease, border-color .12s ease, background .12s ease;
}

.social-btn:hover{
  transform: translateY(-1px);
  border-color: rgba(243,178,27,.55);
  background: rgba(243,178,27,.10);
}

.social-btn svg{
  width:18px;height:18px;
  fill:rgba(255,255,255,.82);
}

/* Responsive */
@media (max-width: 980px){
  .footer-grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px){
  .footer-grid{ grid-template-columns: 1fr; }
  .footer-bottom{ justify-content:flex-start; }
}
/* ===== FIX FOOTER VISIBILITY (FORCE) ===== */
.site-footer{
  background:#0f172a !important;                 /* fond bleu nuit */
  color:#ffffff !important;
}

.site-footer *{
  color:inherit;
}

.site-footer .footer-title{
  color:#f3b21b !important;                      /* jaune visible */
  font-weight:800 !important;
  letter-spacing:1px;
}

.site-footer .footer-link{
  color:rgba(255,255,255,.82) !important;
}

.site-footer .footer-link:hover{
  color:#ffffff !important;
  text-decoration:underline;
}

.site-footer .brand-text h3{
  color:#ffffff !important;
}

.site-footer .brand-text p,
.site-footer .footer-copy{
  color:rgba(255,255,255,.72) !important;
}

.site-footer .social-btn{
  border:1px solid rgba(255,255,255,.18) !important;
  background:rgba(255,255,255,.06) !important;
}

.site-footer .social-btn svg{
  fill:rgba(255,255,255,.9) !important;
}

.site-footer .footer-bottom{
  border-top:1px solid rgba(255,255,255,.12) !important;
}
footer { background:#6f5f54 }

/* ===== FOOTER FORCE (BÉTON) ===== */
footer.site-footer{
  background:#0f172a !important;
  color:#ffffff !important;
  padding: 28px 0 18px !important;
  border-top: 1px solid rgba(255,255,255,.10) !important;
}

footer.site-footer .footer-wrap{
  max-width:1120px !important;
  margin:0 auto !important;
  padding:0 18px !important;
}

footer.site-footer .footer-grid{
  display:grid !important;
  grid-template-columns: 1.4fr 1fr 1fr 1fr !important;
  gap:22px !important;
  padding-bottom:18px !important;
  border-bottom:1px solid rgba(255,255,255,.10) !important;
}

footer.site-footer .footer-title{
  color:#f3b21b !important;
  font-weight:900 !important;
  letter-spacing:1px !important;
  text-transform:uppercase !important;
  font-size:12px !important;
  margin:0 0 12px !important;
}

footer.site-footer .footer-link{
  display:block !important;
  padding:8px 0 !important;
  font-size:13px !important;
  color:rgba(255,255,255,.80) !important;
}

footer.site-footer .footer-link:hover{
  color:#ffffff !important;
  text-decoration:underline !important;
}

footer.site-footer .brand-icon{
  background:#f3b21b !important;
  color:#0f172a !important;
}

footer.site-footer .brand-text h3{
  color:#ffffff !important;
}

footer.site-footer .brand-text p,
footer.site-footer .footer-copy{
  color:rgba(255,255,255,.70) !important;
}

footer.site-footer .footer-bottom{
  display:flex !important;
  justify-content:space-between !important;
  align-items:center !important;
  gap:14px !important;
  padding-top:14px !important;
  flex-wrap:wrap !important;
}

footer.site-footer .footer-social{
  display:flex !important;
  gap:10px !important;
  align-items:center !important;
}

footer.site-footer .social-btn{
  width:38px !important;
  height:38px !important;
  display:grid !important;
  place-items:center !important;
  border-radius:999px !important;
  border:1px solid rgba(255,255,255,.18) !important;
  background:rgba(255,255,255,.06) !important;
}

footer.site-footer .social-btn svg{
  width:18px !important;
  height:18px !important;
  fill:rgba(255,255,255,.90) !important;
}

/* Language Switcher */
.lang-switcher{
  display:inline-flex;
  gap:4px;
  align-items:center;
  margin-right:8px;
}
.lang-btn{
  padding:4px 8px;
  border-radius:6px;
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.5);
  color:var(--muted);
  font-size:11px;
  font-weight:700;
  cursor:pointer;
  transition: all .15s ease;
}
.lang-btn:hover{
  border-color:var(--accent);
  color:var(--text);
}
.lang-btn.active{
  background:var(--accent);
  color:#fff;
  border-color:var(--accent);
}

/* Sakrifis Section */
.sakrifis-section{
  background: linear-gradient(135deg, #1a0a00 0%, #3d1500 40%, #1a0a00 100%);
  padding:40px 0;
  border-top:2px solid rgba(199,144,47,.4);
  border-bottom:2px solid rgba(199,144,47,.4);
}
.sakrifis-inner{
  text-align:center;
  max-width:700px;
  margin:0 auto;
}
.sakrifis-icon{
  font-size:48px;
  margin-bottom:14px;
}
.sakrifis-section h2{
  color:#f3b21b;
  font-size:28px;
  margin:0 0 14px;
  text-shadow: 0 2px 15px rgba(243,178,27,.3);
}
.sakrifis-lead{
  color:rgba(255,255,255,.85);
  line-height:1.7;
  font-size:16px;
  margin:0 0 20px;
}
.sakrifis-actions{
  display:flex;
  gap:12px;
  justify-content:center;
  flex-wrap:wrap;
}
.btn--sakrifis{
  background:linear-gradient(180deg, rgba(243,178,27,.9), rgba(199,144,47,.85));
  color:#1a0a00;
  border-color:rgba(243,178,27,.6);
  font-weight:800;
  padding:14px 24px;
}
.btn--sakrifis:hover{
  transform:translateY(-2px);
  box-shadow:0 8px 25px rgba(243,178,27,.3);
}
.btn--sakrifis-ghost{
  color:rgba(255,255,255,.9);
  border-color:rgba(255,255,255,.25);
  background:rgba(255,255,255,.08);
  padding:14px 24px;
}
.btn--sakrifis-ghost:hover{
  border-color:rgba(243,178,27,.5);
  color:#f3b21b;
}

/* Form row */
.row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin-bottom:12px;
}
.form__actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:12px;
}

/* Responsive */
@media (max-width: 980px){
  .hero__grid{ grid-template-columns: 1fr !important; }
  .split{ grid-template-columns: 1fr !important; }
  .services{ grid-template-columns: repeat(2, 1fr) !important; }
  .testis{ grid-template-columns: repeat(2, 1fr) !important; }
  .nav__links{ display:none !important; }
  .nav__cta{ display:none !important; }
  .nav__burger{ display:block !important; }
  footer.site-footer .footer-grid{ grid-template-columns: 1fr 1fr !important; }
}
@media (max-width: 620px){
  .hero h1{ font-size:28px !important; }
  .hero__cards{ grid-template-columns: 1fr !important; }
  .services{ grid-template-columns: 1fr !important; }
  .testis{ grid-template-columns: 1fr !important; }
  .row{ grid-template-columns: 1fr !important; }
  .sakrifis-section h2{ font-size:22px; }
  footer.site-footer .footer-grid{ grid-template-columns: 1fr !important; }
  footer.site-footer .footer-bottom{ justify-content:flex-start !important; }
}