@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Yanone+Kaffeesatz:wght@300;400;500;600&display=swap");
/* Look inspiré de tes captures : fond sombre, teinte cuivre/or, menu centré */
:root{
  --font-sans: "Yanone Kaffeesatz", Arial, sans-serif;
  --font-serif: "Yanone Kaffeesatz", Arial, sans-serif;
  --font-title: "Yanone Kaffeesatz", Arial, sans-serif;
  --overlay: 0.00; /* assombrit le fond (0=aucun, 1=noir) */
  --vignette: .55;
  --wrap: 1020px;
  --gold: #c79b55;
  --gold2:#9e773f;
  --text:#d9d2c6;
  --muted:#b9b0a3;
  --panel: rgba(30,33,36,.5);
  --shadow: 0 10px 40px rgba(0,0,0,var(--overlay));
}
*{box-sizing:border-box}
html,body{
  margin:0;
  font-family: "Yanone Kaffeesatz", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background-color:#000;
  background-image:
    linear-gradient(to bottom, rgba(0,0,0,var(--overlay)), rgba(0,0,0,var(--overlay))),
    url("../assets/img/background.avif");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow-x:hidden;
}
/* Typo premium (titres + menu) */
.h1, .nav__a, .foot__links a{
  font-family: "Yanone Kaffeesatz", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  letter-spacing: .02em;
}
.home__text, .page .panel, .note, .foot__copy{font-family:"Yanone Kaffeesatz", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; font-size: 14px;}
/* Background + vignette (comme ton site) */
.bg{
  position:fixed; inset:0;
  /* Fallback (toujours supporté) */
  background-color:#000;
  background-image:
    linear-gradient(to bottom, rgba(0,0,0,var(--overlay)), rgba(0,0,0,var(--overlay))),
    url("../assets/img/bg-placeholder.svg");
  background-size: cover;
  background-position: center;
  filter: saturate(.9) contrast(1.0);
  z-index:0;
}
/* Si le navigateur supporte AVIF, on remplace juste l'image */
@supports (background-image: url("x.avif")){
  .bg{
    background-image:
      linear-gradient(to bottom, rgba(0,0,0,var(--overlay)), rgba(0,0,0,var(--overlay))),
      url("../assets/img/background.avif");
  }
}
.vignette{
  position:fixed; inset:-30px;
  background:
    radial-gradient(closest-side at 50% 35%, rgba(0,0,0,0) 0%, rgba(0,0,0,var(--vignette)) 70%, rgba(0,0,0,.88) 100%);
  z-index:1;
}
/* Header */
.mast{
  text-align:center;
  padding-top: 20px;
}
.logo img{
  width:min(560px, 86vw);
  height:auto;
  display:block;
  margin: 0 auto;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,.7));
}
.nav{ margin-top: 18px; }
.nav__ul{
  list-style:none;
  padding:0;
  margin:0 auto;
  display:flex;
  justify-content:center;
  align-items:center;
  gap: 12px;
  flex-wrap: nowrap;
  max-width: calc(var(--wrap) - 80px);
}
.nav__a{
  color:#e7dfd4;
  text-decoration:none;
  font-size: 18px;
  padding: 6px 6px;
  display:inline-block;
  text-shadow: 0 2px 10px rgba(0,0,0,.7);
}
.nav__a:visited{ color:#e7dfd4; }
.nav__a:hover{ color: var(--gold); }
.nav__a.is-active{
  color: var(--gold);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
/* Main */
.wrap{
  max-width: calc(var(--wrap) - 80px);
  margin: 0 auto;
  padding: 26px 18px 60px;
}
.h1{
  text-align:center;
  margin: 26px 0 28px;
  font-weight: 500;
  font-size: 32px;
  color: var(--gold);
  font-family: var(--font-title);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.home .h1{
  text-align:center;
  margin: 26px 0 28px;
  font-weight: 500;
  font-size: 32px;
  color: var(--gold);
  font-family: var(--font-title);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.home__grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items:start;
}
.home__text{
  text-align:center;
  font-size: 18px;
  line-height: 1.9;
  padding-top: 60px;
}
.home__text p{ margin: 0 0 18px; }
.home__text .small{ font-size: 26px; color: var(--muted); margin-top: 10px; }
.snat{
  margin: 16px auto 10px;
  width: 340px;
  max-width: 90%;
  background: rgba(255,255,255,.85);
  padding: 10px 14px;
  box-shadow: var(--shadow);
}
.snat img{ width:100%; height:auto; display:block; }
.cta{ margin-top: 20px; }
.btn{
  display:inline-flex;
  align-items:center;
  gap: 12px;
  border: 2px solid #c8b8a8;
  color: #c8b8a8;
  background: rgba(255,255,255,.05);
  padding: 10px 16px;
  border-radius: 28px;
  text-decoration:none;
  font-size: 14px;
  letter-spacing:.03em;
  box-shadow: 0 6px 22px rgba(0,0,0,.45);
}
.btn:hover{
  border-color: var(--gold);
  color: var(--gold);
}
/* Slider mimic : photo encadrée + "scotch" + flèches */
.slider{
  position:relative;
  width: min(520px, 92%);
  margin: 64px auto 0;
  background: rgba(0,0,0,.30);
  padding: 18px;
  box-shadow: var(--shadow);
}
.slider__img{
  width:100%;
  height:auto;
  display:block;
}










/* Page panels */
.page .panel{
  background: var(--panel);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
  padding: 18px 22px;
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.8;
}
.page .panel a{ color: var(--gold); }
/* Galerie */



code{ background: rgba(0,0,0,.35); padding: 2px 6px; border-radius: 6px; border:1px solid rgba(255,255,255,.08); }
/* Footer */
.foot{ padding: 26px 0 20px; }
.foot__inner{
  max-width: calc(var(--wrap) - 80px);
  margin: 0 auto;
  padding: 0 18px;
  text-align:center;
  color: rgba(255,255,255,.55);
  font-size: 12px;
}
.foot__links{
  display:flex;
  gap: 12px;
  justify-content:center;
  flex-wrap: nowrap;
  margin-bottom: 10px;
}
.foot__links a{ color: rgba(255,255,255,.55); text-decoration:none; }
.foot__links a:hover{ color: var(--gold); }
@media (max-width: 980px){
  .home__grid{ grid-template-columns: 1fr; }
  .slider{ margin-top: 18px; }
  
  
}
/* Bouton "Laissez un avis sur Google" (style pill) */
.btn--google{
  background: rgba(255,255,255,.06);
  border-color: rgba(216, 203, 191, .85);
  color: rgba(216, 203, 191, .95);
  padding: 12px 26px;
  font-size: 14px;
  letter-spacing: .04em;
  border-radius: 999px;
  box-shadow: 0 8px 26px rgba(0,0,0,var(--overlay));
}
.btn--google .btn__arrow{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid rgba(216, 203, 191, .55);
  margin-left: 6px;
  font-size: 26px;
  line-height: 1;
}
.btn--google:hover{
  border-color: var(--gold);
  color: var(--gold);
}
.btn--google:hover .btn__arrow{
  border-color: rgba(199,155,85,.75);
}

/* Prevent nav from wrapping and allow horizontal scroll if needed */
.nav__ul{
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: thin;
}
.nav__ul::-webkit-scrollbar{
  height: 6px;
}
.nav__ul::-webkit-scrollbar-thumb{
  background: rgba(255,255,255,0.25);
  border-radius: 3px;
}
/* MENU avec Yanone Kaffeesatz */
.nav__a{
  font-family: "Yanone Kaffeesatz", sans-serif;
  font-size: 26px;
  letter-spacing: .01em;
}
/* Google button bottom block */
.google-bottom{
  text-align:center;
  margin-top:40px;
  margin-bottom:30px;
}
/* Assure que le contenu passe au-dessus du fond */
.mast, .wrap, .foot{
  position: relative;
  z-index: 2;
}
/* Désactive les anciens calques de fond (on met le fond directement sur body) */
.bg, .vignette{ display:none !important; }
/* Logo transparent : éviter tout fond parasite */
.logo img{
  background: transparent !important;
}
/* V5 — Titre de bienvenue plus grand et sur une seule ligne (desktop) */

/* Mobile : on évite le débordement, on réduit la taille */
@media (max-width: 520px){
  
}
/* Titre de page (sous le menu) */

/* Rendez-vous — layout 4 conteneurs */
.rv-grid2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: start;
  margin-bottom: 28px;
}
.rv-stack{
  display:grid;
  gap: 26px;
  margin-bottom: 30px;
}
.rv-card{
  background: var(--panel);
border: 1px solid rgba(255,255,255,.08);
  border-radius: 26px;
  padding: 22px 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}
.rv-card h2{
  margin: 0 0 12px;
  font-family: "Yanone Kaffeesatz", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 600;
  letter-spacing: .6px;
  font-size: 1.05rem;
  color: var(--gold);
  text-transform: uppercase;
}
.rv-card p{
  margin: 0 0 12px;
  line-height: 1.55;
}
.rv-card--withimg .rv-figure{
  margin: 14px 0 0;
  display:flex;
  justify-content:center;
}
.rv-figure img{
  width: min(360px, 100%);
  height: auto;
  border-radius: 10px;
  opacity: .95;
}
.rv-card--wide{
  max-width: 980px;
  margin: 0 auto;
}
.rv-steps p{ margin-bottom: 12px; }
.rv-actions{
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  color: var(--muted);
  text-decoration:none;
  background: rgba(0,0,0,.25);
  transition: transform .12s ease, background .12s ease;
}
.btn:hover{ transform: translateY(-1px); background: rgba(0,0,0,.35); }
.btn--ghost{ background: transparent; }
.rv-note{
  opacity: .85;
  font-size: .95rem;
}
/* Responsive */
@media (max-width: 980px){
  .rv-grid2{ grid-template-columns: 1fr; }
  .rv-card--wide{ max-width: 100%; }
}
.nav a.is-active{
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 6px;
}
/* V5.6 — Rendez-vous : 4 compartiments comme le site original */
.rv-grid2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
  margin: 10px auto 32px;
}
.rv-stack{
  display:grid;
  gap: 28px;
  margin: 0 auto 34px;
}
.rv-card{
  font-family: "Yanone Kaffeesatz", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--panel);
border: 1px solid rgba(255,255,255,.10);
  border-radius: 30px;
  padding: 26px 28px;
  box-shadow: 0 14px 36px rgba(0,0,0,.35);
}
.rv-card h2{
  margin: 0 0 16px;
  font-family: "Yanone Kaffeesatz", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 600;
  letter-spacing: .6px;
  font-size: 1.12rem;
  color: var(--gold);
  text-transform: uppercase;
}
.rv-card p{
  margin: 0 0 14px;
  line-height: 1.6;
  color: rgba(255,255,255,.92);
}
.rv-note{
  opacity: .88;
  font-size: .98rem;
  margin-top: 8px;
}
.rv-figure{
  margin: 18px 0 0;
  display:flex;
  justify-content:center;
}
.rv-figure img{
  width: min(360px, 100%);
  height: auto;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 10px 28px rgba(0,0,0,.35);
  opacity: .95;
}
.rv-card--wide{
  max-width: 1020px;
  margin: 0 auto;
}
.rv-actions{
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 16px;
}
@media (max-width: 980px){
  .rv-grid2{ grid-template-columns: 1fr; }
  .rv-card{ padding: 22px; border-radius: 26px; }
}
/* V5.8 — Typo RV (proche du rendu Wix) */
.rv-card p,
.rv-steps p{
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.75;
  color: rgba(245,245,245,.92);
}
.rv-card h2{
  font-family: var(--font-title);
}
/* V5.9 — Typographie globale (style Wix) */
:root{
  --body-font: "Yanone Kaffeesatz", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --title-font: "Cinzel", Georgia, serif;
}
body{
  font-family: "Yanone Kaffeesatz", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 24px;
  line-height: 1.45;
}
/* Paragraphes / textes */
p, li{
  font-family: var(--body-font);
  font-size: 24px;
  line-height: 1.45;
}
/* Titres H1 identiques partout */

/* Titres H2 identiques partout (Option B) */
h2{
  font-family: var(--body-font);
  font-weight: 400;
  font-size: 30px;
  line-height: 1.15;
}
/* Titres dans cartes Rendez-vous : doré + uppercase comme Wix */
.rv-card h2{
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 30px;
}
/* Texte des cartes Rendez-vous */
.rv-card p{
  font-family: var(--body-font);
  font-size: 24px;
  line-height: 1.45;
  color: rgba(245,245,245,.95);
}
/* Responsive : taille de base réduite sur mobile */
@media (max-width: 680px){
  body{ font-size: 20px; }
  p, li, .rv-card p{ font-size: 20px; }
  h2, .rv-card h2{ font-size: 24px; }
  
}
.nav__a.is-active:visited{ color: var(--gold); }
/* V6.4 — Compartiment "Feuille de soin" (style Wix) */









@media (max-width: 520px){
  
  
  
  
}
h1,h2,h3{font-family:"Yanone Kaffeesatz", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;}
/* ABOUT PAGE */
.page--about{
  padding-top: 10px;
  padding-bottom: 28px;
}
.about-photo{
  width: min(520px, 92%);
  margin: 18px auto 12px;
  box-shadow: 0 18px 40px rgba(0,0,0,.45);
}
.about-photo img{
  display: block;
  width: 100%;
  height: auto;
}
.about-intro{
  width: min(820px, 92%);
  margin: 18px auto 10px;
  text-align: center;
  font-size: 18px;
  line-height: 1.65;
}
.about-intro p{
  margin: 0 0 18px;
}




.about-story{
  position: relative;
  padding: 22px 0 44px;
  background: url("../assets/img/a-propos-bg.avif") center / cover no-repeat;
  background-attachment: fixed;
}
.about-story::before{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
  pointer-events: none;
}
.about-story > *{
  position: relative;
}
.about-story__inner{
  width: min(1100px, 94%);
  margin: 0 auto;
  background: transparent;
border-radius: 40px;
  border: 0;
box-shadow: none;
padding: 28px;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 28px;
  align-items: center;
}
.about-story__left img{
  width: 100%;
  height: auto;
  display: block;
}
.about-story__right{
  text-align: center;
  font-size: 16px;
  line-height: 1.7;
}
.about-story__title{
  margin: 0 0 12px;
  font-size: 28px;
  font-weight: 700;
  text-transform: none;
}
.about-story__snat{
  margin-top: 18px;
  font-weight: 700;
}
@media (max-width: 980px){
  .about-story__inner{
    grid-template-columns: 1fr;
    padding: 22px;
  }
  .about-story__left{
    max-width: 520px;
    margin: 0 auto;
  }
}
/* ===== v7.3.1 : about page - keep "no panel" but keep premium readability ===== */
.about-story__right,
.about-story__left{
  text-shadow: 0 2px 10px rgba(0,0,0,.55);
}
/* Keep breathing room even without a panel background */
.about-story__inner{
  padding: 34px 28px 38px;
}
/* ==== Google Reviews Panel Wide + Scroll ==== */
.page .panel {
    width: 100% !important;
    max-width: 1100px !important;
    margin: 0 auto !important;
    padding: 30px !important;
    background: var(--panel);
    border-radius: 14px;
}
.elfsight-app-1e2c674d-fbcd-4e55-adde-ed0c9764c609 {
    max-height: 600px;
    overflow-y: auto;
    padding-right: 10px;
}
.elfsight-app-1e2c674d-fbcd-4e55-adde-ed0c9764c609::-webkit-scrollbar {
    width: 8px;
}
.elfsight-app-1e2c674d-fbcd-4e55-adde-ed0c9764c609::-webkit-scrollbar-thumb {
    background: #777;
    border-radius: 4px;
}
.elfsight-app-1e2c674d-fbcd-4e55-adde-ed0c9764c609::-webkit-scrollbar-thumb:hover {
    background: #aaa;
}
/* Center Google review button */
.page .panel p:last-of-type {
    text-align: center !important;
    margin-top: 25px !important;
}
.page .panel p:last-of-type .btn {
    display: inline-block;
    margin: 0 auto;
}
/* ==== About page safety patch (keeps v7.3.1 premium effect) ==== */
.about-story{ background-attachment: fixed; }
.about-story__inner{ padding: 34px 28px 38px !important; }
.about-story__right,
.about-story__left{ text-shadow: 0 2px 10px rgba(0,0,0,.55) !important; }
/* ================================
   FAQ (Questions/Réponses) – premium split + scroll
   ================================ */
.faq-wrap{
  width: 100% !important;
  max-width: 1100px !important;
  margin: 0 auto !important;
  padding: 30px !important;
  background: var(--panel);
  border-radius: 14px;
}
.faq-split{
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 22px;
  align-items: stretch;
  min-height: 600px;
}
/* Left: questions */
.faq-questions{
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(0,0,0,.18);
  display: flex;
  flex-direction: column;
}
.faq-questions__head{
  padding: 14px 16px;
  font-family: "Cinzel", serif;
  letter-spacing: .06em;
  font-size: 14px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.faq-q-list{
  margin: 0;
  padding: 0;
  list-style: none;
  overflow-y: auto;
  max-height: 540px;
}
.faq-q{
  width: 100%;
  display: block;
  text-align: left;
  padding: 14px 16px;
  border: 0;
  background: transparent;
  color: #f2f2f2;
  font-family: "Lora", serif;
  font-size: 16px;
  cursor: pointer;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.faq-q:hover{ background: rgba(255,255,255,.06); }
.faq-q.is-active{
  background: rgba(255,255,255,.12);
  outline: none;
}
/* Right: answer */
.faq-answer{
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 12px;
  background: rgba(0,0,0,.18);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.faq-answer__head{
  padding: 14px 16px;
  font-family: "Cinzel", serif;
  letter-spacing: .06em;
  font-size: 14px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.faq-answer__body{
  padding: 18px 18px 22px;
  overflow-y: auto;
  max-height: 540px;
  color: #f2f2f2;
}
.faq-answer__body h2{
  font-family: "Cinzel", serif;
  font-size: 20px;
  margin: 0 0 12px;
}
.faq-answer__body p{
  margin: 0 0 12px;
  line-height: 1.7;
}
/* Mobile: stack */
@media (max-width: 860px){
  .faq-split{ grid-template-columns: 1fr; min-height: unset; }
  .faq-q-list{ max-height: unset; }
  .faq-answer__body{ max-height: unset; }
}
/* ==== FAQ Typography + Centering Fix ====*/
.faq-questions__head,
.faq-answer__head{
    font-family: "Yanone Kaffeesatz", sans-serif !important;
    text-align: center !important;
}
.faq-q{
    font-family: "Yanone Kaffeesatz", sans-serif !important;
    text-align: center !important;
}
.faq-answer__body h2{
    font-family: "Yanone Kaffeesatz", sans-serif !important;
    text-align: center !important;
}
.faq-answer__body p{
    text-align: center !important;
    font-family: "Yanone Kaffeesatz", sans-serif !important;
}
/* ==== FAQ V7.3.5 : tailles + animations premium ==== */
/* Taille identique aux textes "Rendez-vous" */
.faq-q{
  font-size: 18px !important;
  line-height: 1.35;
}
.faq-answer__body p{
  font-size: 18px !important;
  line-height: 1.7 !important;
}
/* Titre de la réponse un peu plus marqué (reste premium) */
.faq-answer__body h2{
  font-size: 22px !important;
}
/* Lueur premium au survol + actif */
.faq-q{
  transition: background .18s ease, box-shadow .18s ease, transform .18s ease;
}
.faq-q:hover{
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.10), 0 10px 22px rgba(0,0,0,.30);
  transform: translateY(-1px);
}
.faq-q.is-active{
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.14), 0 14px 30px rgba(0,0,0,.35);
}
/* Fondu doux quand une réponse change */
@keyframes faqFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.faq-a.is-active{
  animation: faqFadeIn .22s ease-out;
  will-change: opacity, transform;
}
/* ==== Hide secondary "MENU" square (subnav) ==== */

/* ==== FAQ V7.3.7 : larger Yanone sizes to match site readability ==== */
.faq-q{
  font-size: 22px !important;
  line-height: 1.25 !important;
}
.faq-answer__body h2{
  font-size: 26px !important;
}
.faq-answer__body p{
  font-size: 20px !important;
  line-height: 1.7 !important;
}
/* =========================================================
   CLEANUP: remove experimental responsive hamburger elements
   (keeps desktop menu only)
   ========================================================= */
.nav-toggle,
.nav-overlay{
  display: none !important;
}
/* If any JS added nav-open, don't lock scrolling */
body.nav-open{
  overflow: auto !important;
}
/* Ensure desktop nav stays visible */
.nav{
  display: block !important;
}
/* =========================================================
   FAQ SIZE TWEAK (bigger container)
   ========================================================= */
.faq-wrap{
  max-width: 1240px !important;
  padding: 36px !important;
}
.faq-split{
  grid-template-columns: 420px 1fr !important;
  min-height: 720px !important;
}
.faq-q-list{
  max-height: 650px !important;
}
.faq-answer__body{
  max-height: 650px !important;
}
/* ============================================
   FAQ V7.4.3 — Bigger Typography (Yanone)
   ============================================ */
/* QUESTIONS (colonne gauche) */
.faq-q{
    font-size: 28px !important;
    line-height: 1.4 !important;
}
/* TITRE de la réponse */
.faq-answer__body h2{
    font-size: 32px !important;
}
/* TEXTE de la réponse */
.faq-answer__body p{
    font-size: 24px !important;
    line-height: 1.8 !important;
}
/* ==== FAQ V7.4.5 — Title colors ==== */
.faq-questions__head,
.faq-q,
.faq-answer__head,
.faq-answer__body h2{
    color: #E6D0AC !important;
}
/* =========================================================
   FAQ V7.4.6 — Gold accent upgrades
   ========================================================= */
/* 1) Petite barre verticale dorée devant la question active */
.faq-q.is-active{
    position: relative;
}
.faq-q.is-active::before{
    content: "";
    position: absolute;
    left: 0;
    top: 10%;
    height: 80%;
    width: 4px;
    background: #E6D0AC;
    border-radius: 3px;
}
/* 2) Bordure dorée légère autour des blocs FAQ */
.faq-questions,
.faq-answer{
    border: 1px solid rgba(230,208,172,0.25) !important;
    box-shadow: 0 0 18px rgba(230,208,172,0.10) !important;
}
/* 3) Hover gold glow */
.faq-q:hover{
    box-shadow: inset 0 0 0 1px rgba(230,208,172,0.45),
                0 8px 20px rgba(230,208,172,0.18) !important;
    transform: translateY(-2px);
    transition: all .18s ease-out;
}
/* =========================================================
   FAQ V7.4.7 — Hyper Premium Upgrades
   ========================================================= */
/* 1) Titles QUESTION / RÉPONSE larger */
.faq-questions__head,
.faq-answer__head{
    font-size: 28px !important;
    letter-spacing: .08em;
}
/* 2) Remove repeated titles inside answers */
.faq-answer__body h2{
    display: none !important;
}
/* 3) Subtle gradient background for answer panel */
.faq-answer{
    background: linear-gradient(to bottom, rgba(0,0,0,0.25), rgba(0,0,0,0.45)) !important;
}
/* 4) Sliding gold bar animation */
.faq-q.is-active::before{
    animation: slideGold .25s ease-out;
}
@keyframes slideGold{
    from{ transform: translateY(20px); opacity: 0; }
    to{ transform: translateY(0); opacity: 1; }
}
/* 5) Vertical answer transition (soft slide+fade) */
.faq-a.is-active{
    animation: faqSlideFade .25s ease-out;
}
@keyframes faqSlideFade{
    from{ opacity: 0; transform: translateY(12px); }
    to{ opacity: 1; transform: translateY(0); }
}
/* 6) Optional soft gold hover on answers scroll area */
.faq-answer__body:hover{
    box-shadow: inset 0 0 18px rgba(230,208,172,0.1);
    transition: box-shadow .3s ease;
}
/* === Photos / Galerie === */
.g{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:14px;
  margin-top:18px;
}
@media (max-width: 980px){ .g{ grid-template-columns:repeat(3, 1fr); } }
@media (max-width: 720px){ .g{ grid-template-columns:repeat(2, 1fr); gap:12px; } }
@media (max-width: 420px){ .g{ grid-template-columns:1fr; } }
.g__item{
  position:relative;
  display:block;
  border-radius:18px;
  overflow:hidden;
  background: rgba(0,0,0,.22);
  box-shadow: var(--shadow);
  outline: 1px solid rgba(199,155,95,.18);
}
.g__img{
  width:100%;
  height:100%;
  aspect-ratio: 3 / 4;
  object-fit:cover;
  transform: translateZ(0);
  transition: transform .35s ease, filter .35s ease;
  filter: saturate(1.05) contrast(1.05);
}
.g__item:hover .g__img{
  transform: scale(1.04);
  filter: saturate(1.15) contrast(1.08);
}
.g__item::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(to top, rgba(0,0,0,.45), rgba(0,0,0,0) 55%);
  opacity:.65;
  pointer-events:none;
}
/* Lightbox */

.lb{
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0,0,0,.84);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  z-index: 9999;
}
.lb--open{ display:flex; }

/* Prevent background scroll while lightbox is open */
.no-scroll{ overflow: hidden; }

.lb__img{
  max-width: min(92vw, 1100px);
  max-height: 88vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: var(--shadow);
  outline: 1px solid rgba(199,155,95,.22);
  background: rgba(0,0,0,.18);
}

.lb__close,
.lb__nav{
  position: absolute;
  border: 1px solid rgba(199,155,95,.30);
  background: rgba(0,0,0,.45);
  color: var(--beige);
  border-radius: 999px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(0,0,0,.55);
  transition: transform .18s ease, background-color .18s ease, border-color .18s ease;
}
.lb__close:hover,
.lb__nav:hover{
  transform: translateY(-1px);
  background: rgba(0,0,0,.60);
  border-color: rgba(199,155,95,.45);
}

.lb__close{
  top: 18px;
  right: 18px;
  font-size: 28px;
  line-height: 1;
}

.lb__nav{
  top: 50%;
  transform: translateY(-50%);
  font-size: 26px;
  line-height: 1;
}
.lb__prev{ left: 16px; }
.lb__next{ right: 16px; }

@media (max-width: 560px){
  .lb{ padding: 14px; }
  .lb__img{ max-width: 94vw; max-height: 84vh; border-radius: 16px; }
  .lb__close{ top: 12px; right: 12px; width: 42px; height: 42px; }
  .lb__prev{ left: 10px; }
  .lb__next{ right: 10px; }
}




/* Lightbox navigation */





@media (max-width: 560px){
  
  
  
}

/* Documents list */





.btn--pdf .btn__icon{
  opacity:.95;
}
@media (max-width: 600px){
  
  
  .btn--pdf{
    width:100%;
    justify-content:center;
  }
}
/* V11 - Documents: pages de lecture (texte) */






/* =========================
   V13 – Premium refinements
   (typo, buttons, docs UI, motion, spacing, accessibility)
   ========================= */
:root{
  --read-size: 18px;
  --read-line: 1.75;
  --btn-font: 16px;
}
/* Point 1 – Bigger, more premium reading rhythm */
.page .panel,
.home__text,
.note{
  font-size: clamp(17px, 1.05vw, var(--read-size));
  line-height: var(--read-line);
}
.page .panel p{ max-width: 68ch; margin-left:auto; margin-right:auto; }
.page .panel ul, .page .panel ol{ max-width: 68ch; margin-left:auto; margin-right:auto; }
.page .panel li{ margin: 10px 0; }
/* Headings hierarchy */
.h1{
  font-size: 32px;
  margin: 30px 0 26px;
}
/* Point 3 – Buttons feel more “bijou” */
.btn{
  font-size: var(--btn-font);
  padding: 12px 20px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, color .18s ease, background-color .18s ease;
  will-change: transform;
}
.btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(0,0,0,.55);
}
.btn:active{ transform: translateY(0); }
/* PDF icon inside buttons */

/* Point 4 – Documents as premium cards */
.doccards{
  display:flex;
  flex-direction:column;
  gap:14px;
  margin: 18px 0 8px;
  padding: 0;
  list-style: none;
  max-width: 72ch;
  margin-left:auto;
  margin-right:auto;
}
.doccard{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.doccard__meta{ min-width: 0; }
.doccard__title{
  margin:0;
  font-size: 18px;
  letter-spacing: .06em;
  text-transform: uppercase;
  line-height: 1.25;
}
.doccard__title a{
  color: inherit;
  text-decoration:none;
}
.doccard__title a:hover{ color: var(--gold); }
.doccard__desc{
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}
.doc-buttons{
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
  margin:18px auto 10px;
  max-width:72ch;
}
.doccard__actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
  flex: 0 0 auto;
}
.btn--ghost{
  background: rgba(255,255,255,.03);
  border-color: rgba(200,184,168,.65);
  color: #c8b8a8;
}
.btn--ghost:hover{
  border-color: var(--gold);
  color: var(--gold);
}
/* Placeholder line */
.doccard--placeholder{
  opacity: .85;
}
.doccard--placeholder .doccard__actions{ display:none; }
/* Point 5 – Subtle motion */
@media (prefers-reduced-motion: no-preference){
  .fade-in{
    animation: fadeInUp .55s ease both;
  }
  @keyframes fadeInUp{
    from{ opacity: 0; transform: translateY(10px); }
    to{ opacity: 1; transform: translateY(0); }
  }
}
/* Point 6 – Accessibility + focus */
a:focus-visible, button:focus-visible, .btn:focus-visible{
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 30px;
}
/* Mobile layout */
@media (max-width: 700px){
  .doccard{
    flex-direction:column;
    align-items:stretch;
  }
  .doccard__actions{ justify-content:flex-start; }
  .doccard__actions .btn{ width:100%; justify-content:center; }
}
/* V15: document preview as image */
.docviewer{display:grid;gap:18px;margin-top:18px}
.docviewer img{width:100%;height:auto;display:block;border-radius:14px;box-shadow:0 10px 30px rgba(0,0,0,.35)}
/* V18: contact premium layout */
.page .panel.contact{ padding: 24px 26px; }




.contact__actions .btn{
  padding: 12px 18px;
  border-radius: 999px;
}

.btn.btn--cta{
  padding: 13px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(0,0,0,.18);
}
.btn.btn--cta:hover{
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(0,0,0,.35);
}









@media (max-width: 900px){
  
  
}
/* ===== CONTACT - layout premium (v20) ===== */
.h2{
  margin: 0 0 10px;
  font-weight: 500;
  font-size: 18px;
  color: var(--gold);
  font-family: var(--font-title);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.h3{
  margin: 0 0 10px;
  font-weight: 500;
  font-size: 15px;
  color: var(--gold);
  font-family: var(--font-title);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.contact-cards{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
}
.contact-card{
  background: rgba(0,0,0,.20);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 16px;
  padding: 14px 14px;
}
.contact-card p{ margin: 0; }
.contact-link{
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.35);
}
.contact-link:hover{ border-bottom-color: rgba(255,255,255,.85); }
.contact-subtitle{
  margin: 0 0 14px;
  text-align: center;
}
.map-wrap{
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
}
.map-wrap iframe{
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}
.btn-row{
  display:flex;
  justify-content:center;
  gap: 14px;
  margin-top: 16px;
}
.video-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
}
.video-card{
  background: rgba(0,0,0,.20);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 16px;
  padding: 14px;
}
.ratio{
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
}
.ratio iframe{
  width: 100%;
  height: 100%;
  border: 0;
  display:block;
}
.social-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
  margin-top: 10px;
}
.social-card{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 14px 12px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(0,0,0,.18);
  text-decoration:none;
  color:#fff;
  transition: transform .18s ease, border-color .18s ease;
}
.social-card:hover{
  transform: translateY(-1px);
  border-color: rgba(255,255,255,.35);
}
.social-ico{
  display:inline-flex;
  width: 34px;
  height: 34px;
  align-items:center;
  justify-content:center;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.18);
  color: #fff;
}
.social-label{
  letter-spacing: .02em;
}
@media (max-width: 820px){
  .contact-cards{ grid-template-columns: 1fr; }
  .video-grid{ grid-template-columns: 1fr; }
  .social-grid{ grid-template-columns: 1fr; }
  .map-wrap iframe{ height: 340px; }
}
/* Video titles (Contact) — use readable lowercase-friendly font */
.video-title{
  font-family: var(--font-text), serif;
  text-transform:none!important;
  letter-spacing:0.02em;
  font-weight:600;
  color:#ffffff!important;
  font-size:26px!important;
  margin:8px 0 14px!important;
}
/* Google Maps embed (contact) */
.map-embed{
  width: 100%;
  height: 560px;
  border: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
}
@media (max-width: 768px){
  .map-embed{
    height: 380px;
  }
}



/* Map zoom buttons — bottom right */
.map-wrap{
  position: relative;
  width: 100%;
}
.map-zoom{
  position: absolute;
  bottom: 16px;
  right: 16px;
  display: grid;
  gap: 10px;
  z-index: 5;
}
.map-zoom-btn{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.55);
  color: rgba(255,255,255,.95);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(0,0,0,.35);
  backdrop-filter: blur(6px);
}
.map-zoom-btn:active{
  transform: translateY(1px);
}

@media (max-width: 768px){
  .map-zoom{
    bottom: 12px;
    right: 12px;
  }
  .map-zoom-btn{
    width: 40px;
    height: 40px;
    font-size: 26px;
  }
}





/* RDV title on Contact */
.rdv-title{
  font-size:26px!important;
  text-align:center!important;
  margin:10px 0 22px!important;
}






.dashcam-title{
  font-size:26px!important!important;
  color:#ffffff!important;
  text-align:center!important;
  margin:12px 0 20px!important;
}


/* === CHARTE COULEUR OFFICIELLE YAN TATTOO STUDIO === */
:root {
  --yan-light: #f2e9dc;
  --yan-gold: #c89b4f;
}

/* Couleur par défaut du texte */
body {
  color: var(--yan-light);
}

/* Titre section Vidéos dash cam */
.dashcam-title {
  color: var(--yan-gold) !important;
}

/* Titres des vidéos */
.video-title {
  color: var(--yan-light) !important;
}

/* Sécurité : tous les h2 en doré */
h2 {
  color: var(--yan-gold);
}

/* Sécurité : tous les h3 en clair */
h3 {
  color: var(--yan-light);
}



/* Téléphone et email en couleur officielle claire */
.contact-link {
  color: #f2e9dc !important;
  text-decoration-color: #f2e9dc !important;
}



/* === DOCUMENTS PAGE FONT ENLARGEMENT (SITE V5) === */
.doccards .doccard__title { font-size: 1.4rem; }
.doccards .doccard__desc { font-size: 1.1rem; }
.page .muted { font-size: 1.05rem; }


/* === BACKGROUND VISIBILITY ADJUSTMENT (SITE V6) === */


/* ================================
   FAQ Mobile (accordéon premium)
   - Desktop: split existant inchangé
   - Mobile: accordéon via <details> (sans JS)
   ================================ */
.faq-mobile{ display:none; }
.faq-mobile__head{
  font-family: var(--font-title);
  color: var(--beige);
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: .9rem;
  opacity: .9;
  margin-bottom: 10px;
}
.faq-item{
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  background: rgba(0,0,0,.22);
  overflow: hidden;
  margin: 10px 0;
}
.faq-item__q{
  cursor: pointer;
  padding: 14px 14px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  color: var(--gold);
font-weight: 600;
}
.faq-item__q::-webkit-details-marker{ display:none; }
.faq-item__qtext{ flex:1; }
.faq-item__icon{
  color: var(--gold);
  font-size: 1.4rem;
  line-height: 1;
  transform: rotate(90deg);
  transition: transform .22s ease;
  opacity: .95;
}
.faq-item[open] .faq-item__icon{ transform: rotate(-90deg); }
.faq-item__a{
  padding: 0 14px 14px 14px;
  color: var(--beige);
opacity: .92;
}
.faq-item__a p{ margin: 10px 0; }


/* Accessibility helpers */
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Avoid obsolete iframe attributes */
iframe { border: 0; }
