/* ============================================================
   Coiffure Arsène — Feuille de style
   Rediseño estático · mkDIVEN · zero dependencias externas
   ============================================================ */

/* ---------- Fuentes locales ---------- */
@font-face{font-family:'Cormorant Garamond';font-style:normal;font-weight:400;font-display:swap;src:url('../fonts/cormorant-400.woff2') format('woff2');}
@font-face{font-family:'Cormorant Garamond';font-style:italic;font-weight:400;font-display:swap;src:url('../fonts/cormorant-400-italic.woff2') format('woff2');}
@font-face{font-family:'Cormorant Garamond';font-style:normal;font-weight:500;font-display:swap;src:url('../fonts/cormorant-500.woff2') format('woff2');}
@font-face{font-family:'Cormorant Garamond';font-style:normal;font-weight:600;font-display:swap;src:url('../fonts/cormorant-600.woff2') format('woff2');}
@font-face{font-family:'Inter';font-style:normal;font-weight:300;font-display:swap;src:url('../fonts/inter-300.woff2') format('woff2');}
@font-face{font-family:'Inter';font-style:normal;font-weight:400;font-display:swap;src:url('../fonts/inter-400.woff2') format('woff2');}
@font-face{font-family:'Inter';font-style:normal;font-weight:500;font-display:swap;src:url('../fonts/inter-500.woff2') format('woff2');}
@font-face{font-family:'Inter';font-style:normal;font-weight:600;font-display:swap;src:url('../fonts/inter-600.woff2') format('woff2');}

/* ---------- Tokens ---------- */
:root{
  --background:#0e0d0b;
  --foreground:#f6f3ec;
  --card:#1a1714;
  --primary-foreground:#131210;
  --muted-foreground:#a89a85;
  --gold:#cba257;
  --gold-muted:#9c7f4f;
  --border:#2d2823;
  --font-display:'Cormorant Garamond',Georgia,serif;
  --font-sans:'Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  --max:80rem;
}

/* ---------- Reset ---------- */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0;}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%;}
html.js [data-reveal]{opacity:0;transform:translateY(28px);}
body{
  background:var(--background);color:var(--foreground);
  font-family:var(--font-sans);font-weight:400;line-height:1.5;
  -webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;
  overflow-x:hidden;
}
img{display:block;max-width:100%;height:auto;}
a{color:inherit;text-decoration:none;}
ul{list-style:none;}
h1,h2,h3,h4{font-family:var(--font-display);font-weight:400;letter-spacing:-.01em;line-height:1.1;}
::selection{background:var(--gold);color:var(--primary-foreground);}

/* ---------- Utilidades ---------- */
.wrap{max-width:var(--max);margin:0 auto;padding-left:1.5rem;padding-right:1.5rem;}
.gold{color:var(--gold);}
.font-display{font-family:var(--font-display);}
.italic{font-style:italic;}
.gold-gradient{
  background:linear-gradient(135deg,#e0c485,#b8954d);
  -webkit-background-clip:text;background-clip:text;color:transparent;
}
.eyebrow{color:var(--gold);text-transform:uppercase;letter-spacing:.3em;font-size:.7rem;margin-bottom:1rem;}
.center{text-align:center;}

/* ---------- Botones ---------- */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:.5rem;
  padding:1rem 2rem;font-size:.8rem;text-transform:uppercase;letter-spacing:.1em;
  transition:background .25s,color .25s,border-color .25s;cursor:pointer;
  border:1px solid transparent;font-family:var(--font-sans);
}
.btn svg{width:1rem;height:1rem;}
.btn-gold{background:var(--gold);color:var(--primary-foreground);}
.btn-gold:hover{background:var(--gold-muted);}
.btn-ghost{border-color:var(--border);color:var(--foreground);}
.btn-ghost:hover{border-color:var(--gold);color:var(--gold);}

/* ---------- Header / Nav ---------- */
.site-header{
  position:fixed;top:0;left:0;right:0;z-index:50;
  background:rgba(14,13,11,.72);backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(45,40,35,.5);
}
.nav{max-width:var(--max);margin:0 auto;height:4rem;padding:0 1.5rem;display:flex;align-items:center;justify-content:space-between;}
.brand{display:flex;align-items:center;gap:.75rem;}
.brand img{height:2.5rem;width:2.5rem;object-fit:contain;}
.brand-name{font-family:var(--font-display);font-size:1.05rem;line-height:1.1;}
.brand-sub{font-size:.62rem;letter-spacing:.2em;text-transform:uppercase;color:var(--gold);}
.nav-links{display:none;align-items:center;gap:2.25rem;font-size:.9rem;}
.nav-links a{transition:color .2s;}
.nav-links a:hover{color:var(--gold);}
.nav-cta{display:none;}
.nav-toggle{display:inline-flex;background:none;border:none;color:var(--foreground);padding:.5rem;cursor:pointer;}
.nav-toggle svg{width:1.5rem;height:1.5rem;}
.mobile-panel{display:none;border-top:1px solid rgba(45,40,35,.5);background:rgba(14,13,11,.97);}
.mobile-panel.open{display:block;}
.mobile-panel ul{display:flex;flex-direction:column;gap:1rem;padding:1.25rem 1.5rem;font-size:.95rem;}
.mobile-panel a:hover{color:var(--gold);}
.mobile-panel .tel-row{display:flex;flex-direction:column;gap:.35rem;padding-top:.75rem;border-top:1px solid rgba(45,40,35,.5);}
.mobile-panel .tel-row a{color:var(--gold);display:inline-flex;align-items:center;gap:.5rem;}
.mobile-panel .rdv{color:var(--gold);display:inline-flex;align-items:center;gap:.5rem;}
.scrim{position:fixed;inset:0;background:rgba(0,0,0,.5);z-index:40;opacity:0;visibility:hidden;transition:opacity .3s;}
.scrim.show{opacity:1;visibility:visible;}
.icon-sm{width:1rem;height:1rem;flex-shrink:0;}

/* ---------- Hero ---------- */
.hero{position:relative;min-height:100svh;display:flex;align-items:center;justify-content:center;overflow:hidden;padding-top:4rem;}
.hero-img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;opacity:.4;}
.hero-veil{position:absolute;inset:0;background:linear-gradient(to bottom,rgba(14,13,11,.6),rgba(14,13,11,.4),var(--background));}
.hero-inner{position:relative;z-index:10;text-align:center;padding:0 1.5rem;max-width:48rem;}
.hero-kicker{color:var(--gold);letter-spacing:.35em;font-size:.75rem;text-transform:uppercase;margin-bottom:1.5rem;}
.hero h1{font-size:clamp(3.25rem,12vw,8rem);line-height:1.05;margin-bottom:1.5rem;}
.hero p{color:var(--muted-foreground);font-size:1.05rem;max-width:36rem;margin:0 auto 2.5rem;line-height:1.7;}
.hero-actions{display:flex;flex-direction:column;gap:.75rem;justify-content:center;}
.hero-tels{margin-top:1.5rem;display:flex;flex-direction:column;align-items:center;gap:.5rem;font-size:.75rem;color:var(--muted-foreground);}
.hero-tels a{display:inline-flex;align-items:center;gap:.4rem;}
.hero-tels a:hover{color:var(--gold);}
.hero-tels .sep{display:none;color:var(--border);}
.scroll-hint{position:absolute;bottom:2rem;left:50%;transform:translateX(-50%);color:rgba(203,162,87,.6);font-size:.72rem;letter-spacing:.3em;}

/* ---------- Secciones genéricas ---------- */
section{scroll-margin-top:4rem;}
.sec{padding:3.5rem 1.5rem;}
.sec-alt{background:rgba(26,23,20,.3);border-top:1px solid rgba(45,40,35,.5);border-bottom:1px solid rgba(45,40,35,.5);}
.sec-head{text-align:center;margin-bottom:3.5rem;}
.sec-head h2{font-size:clamp(2.25rem,5vw,3rem);}
.sec-head p{color:var(--muted-foreground);max-width:42rem;margin:1.5rem auto 0;line-height:1.7;}
h2 .gold-gradient{font-style:italic;}

/* ---------- Histoire ---------- */
.histoire-grid{max-width:64rem;margin:0 auto;display:grid;gap:3rem;align-items:center;}
.histoire-logo{position:relative;}
.histoire-logo img{width:16rem;height:16rem;margin:0 auto;object-fit:contain;}
.histoire-logo .ring{position:absolute;inset:-1rem;border:1px solid rgba(203,162,87,.3);border-radius:9999px;z-index:-1;}
.histoire h2{font-size:clamp(2.25rem,5vw,3rem);margin-bottom:1.5rem;}
.histoire p{color:var(--muted-foreground);line-height:1.7;margin-bottom:1rem;}
.stats{margin-top:2rem;display:flex;align-items:center;gap:2rem;}
.stat-num{font-family:var(--font-display);font-size:3rem;color:var(--gold);line-height:1;}
.stat-lbl{font-size:.7rem;text-transform:uppercase;letter-spacing:.15em;color:var(--muted-foreground);}
.stat-div{height:3rem;width:1px;background:var(--border);}

/* ---------- Retratos (fondateur / équipe) ---------- */
.portrait-frame{position:relative;}
.portrait-frame .shot{overflow:hidden;box-shadow:0 25px 50px -12px rgba(0,0,0,.4);}
.portrait-frame img{width:100%;aspect-ratio:3/4;object-fit:cover;transition:transform .7s ease;}
.portrait-frame:hover img{transform:scale(1.04);}
.portrait-frame .accent{position:absolute;bottom:-1rem;right:-1rem;width:100%;height:100%;border:1px solid rgba(203,162,87,.4);z-index:-1;transition:all .7s;}
.portrait-frame:hover .accent{bottom:-1.25rem;right:-1.25rem;border-color:rgba(203,162,87,.7);}

.fondateur-grid{max-width:64rem;margin:0 auto;display:grid;gap:3rem;align-items:center;}
.fondateur h2{font-size:clamp(2.25rem,5vw,3rem);margin-bottom:1.5rem;}
.fondateur p{color:var(--muted-foreground);line-height:1.7;margin-bottom:1rem;}
.tagline{margin-top:2rem;display:inline-flex;align-items:center;gap:.5rem;font-size:.72rem;text-transform:uppercase;letter-spacing:.3em;color:var(--gold);}
.tagline .bar{height:1px;width:2rem;background:rgba(203,162,87,.6);}

.team-grid{max-width:72rem;margin:0 auto;display:grid;gap:2rem;}
.team-card .info{margin-top:1.5rem;text-align:center;}
.team-card h3{font-family:var(--font-display);font-size:1.5rem;}
.team-card .role{margin-top:.5rem;display:inline-flex;align-items:center;gap:.5rem;font-size:.68rem;text-transform:uppercase;letter-spacing:.3em;color:var(--gold);}
.team-card .role .bar{height:1px;width:1.5rem;background:rgba(203,162,87,.6);}
.team-card .desc{margin-top:.75rem;font-size:.875rem;color:var(--muted-foreground);line-height:1.7;max-width:20rem;margin-left:auto;margin-right:auto;}

/* ---------- Services ---------- */
.services-grid{max-width:72rem;margin:0 auto;display:grid;gap:2.5rem;}
.svc-card{background:var(--background);border:1px solid rgba(45,40,35,.5);padding:2rem;}
.svc-head{display:flex;align-items:center;gap:.75rem;margin-bottom:2rem;padding-bottom:1.5rem;border-bottom:1px solid rgba(45,40,35,.5);}
.svc-head svg{width:1.5rem;height:1.5rem;color:var(--gold);}
.svc-head h3{font-family:var(--font-display);font-size:1.875rem;}
.svc-head a{font-size:.7rem;letter-spacing:.15em;text-transform:uppercase;color:var(--muted-foreground);}
.svc-head a:hover{color:var(--gold);}
.svc-list li{display:flex;align-items:baseline;justify-content:space-between;gap:1rem;padding:.4rem 0;border-bottom:1px solid rgba(45,40,35,.4);}
.svc-list li:last-child{border-bottom:none;}
.svc-list .price{color:var(--gold);font-size:.875rem;white-space:nowrap;}
.svc-list .note{font-size:.7rem;color:var(--muted-foreground);font-style:italic;}
.svc-foot{text-align:center;color:var(--muted-foreground);font-size:.75rem;margin-top:2.5rem;font-style:italic;}
.svc-cta{text-align:center;margin-top:2.5rem;}

/* ---------- Réalisations ---------- */
.gallery{max-width:72rem;margin:0 auto;display:grid;grid-template-columns:repeat(2,1fr);gap:1rem;}
.gallery figure{position:relative;overflow:hidden;border:1px solid rgba(45,40,35,.5);}
.gallery img{width:100%;aspect-ratio:3/4;object-fit:cover;transition:transform .7s;}
.gallery figure:hover img{transform:scale(1.05);}
.gallery figcaption{position:absolute;left:0;right:0;bottom:0;padding:2.5rem 1rem .75rem;background:linear-gradient(to top,rgba(14,13,11,.9),rgba(14,13,11,.5),transparent);}
.gallery figcaption span{font-size:.62rem;letter-spacing:.3em;text-transform:uppercase;color:var(--gold);}

/* ---------- Salon ---------- */
.salon-wrap{max-width:72rem;margin:0 auto;}
.salon-photo{position:relative;overflow:hidden;border:1px solid rgba(45,40,35,.5);}
.salon-wrap p{text-align:center;color:var(--muted-foreground);max-width:42rem;margin:2rem auto 0;line-height:1.7;}

/* ---------- Contact ---------- */
.contact-wrap{max-width:64rem;margin:0 auto;}
.contact-grid{display:grid;gap:1.5rem;margin-bottom:2.5rem;}
.c-card{border:1px solid var(--border);padding:2rem;transition:border-color .25s;}
.c-card:hover{border-color:var(--gold);}
.c-full{grid-column:1/-1;display:flex;align-items:flex-start;gap:1rem;}
.c-card svg{width:1.25rem;height:1.25rem;color:var(--gold);flex-shrink:0;margin-top:.15rem;}
.c-lbl{font-size:.7rem;letter-spacing:.15em;text-transform:uppercase;color:var(--muted-foreground);margin-bottom:.5rem;}
.c-card .big{font-family:var(--font-display);font-size:1.125rem;}
.tel-list a{display:flex;align-items:baseline;justify-content:space-between;padding:.5rem 0;transition:color .2s;}
.tel-list a:hover{color:var(--gold);}
.tel-list a:not(:last-child){border-bottom:1px solid rgba(45,40,35,.5);margin-bottom:.5rem;padding-bottom:1rem;}
.tel-list .who{font-family:var(--font-display);font-size:1.125rem;}
.hours li{display:flex;align-items:baseline;justify-content:space-between;font-size:.875rem;padding:.4rem 0;}
.hours .closed{color:var(--muted-foreground);font-style:italic;}
.hours .open{color:var(--gold);}
.contact-row{display:grid;gap:1.5rem;margin-bottom:1.5rem;}
.c-link{display:flex;align-items:center;gap:1rem;padding:1.5rem;border:1px solid var(--border);transition:border-color .25s;}
.c-link:hover{border-color:var(--gold);}
.c-link.accent{background:rgba(203,162,87,.05);}
.contact-cta{text-align:center;}

/* ---------- Footer ---------- */
.site-footer{padding:3rem 1.5rem;border-top:1px solid rgba(45,40,35,.5);text-align:center;}
.site-footer .flogo{height:3.5rem;width:auto;margin:0 auto 1rem;object-fit:contain;}
.site-footer .fname{font-family:var(--font-display);font-size:1.125rem;}
.site-footer .fsub{color:var(--gold);font-size:.62rem;letter-spacing:.3em;text-transform:uppercase;margin-bottom:1rem;}
.fmeta{font-size:.75rem;color:var(--muted-foreground);display:flex;flex-direction:column;gap:.25rem;}
.fmeta a:hover{color:var(--gold);}
.fsocial{display:flex;align-items:center;justify-content:center;gap:1rem;padding-top:.5rem;}
.fsocial a{display:inline-flex;align-items:center;gap:.4rem;}
.fsocial a:hover{color:var(--gold);}
.fsocial svg{width:1rem;height:1rem;}
.fbottom{padding-top:.75rem;display:flex;align-items:center;justify-content:center;gap:.75rem;flex-wrap:wrap;}
.fbottom .dot{color:var(--border);}
.fbottom a:hover{color:var(--gold);}
.credit{margin-top:1.25rem;font-size:.65rem;letter-spacing:.08em;color:rgba(168,154,133,.6);}
.credit a:hover{color:var(--gold);}

/* ---------- Páginas simples (reserver / confidentialité) ---------- */
.simple-page{min-height:100vh;display:flex;flex-direction:column;align-items:center;justify-content:center;padding:6rem 1.5rem;text-align:center;}
.simple-card{max-width:28rem;width:100%;}
.badge-circle{display:inline-flex;align-items:center;justify-content:center;width:4rem;height:4rem;border-radius:9999px;background:rgba(203,162,87,.1);color:var(--gold);margin:0 auto 2rem;}
.badge-circle svg{width:2rem;height:2rem;}
.simple-card h1{font-size:clamp(2.25rem,7vw,3rem);margin-bottom:.75rem;}
.simple-card>p{color:var(--muted-foreground);line-height:1.7;margin-bottom:2rem;}
.phone-box{border:1px solid rgba(45,40,35,.5);padding:1.5rem;background:rgba(26,23,20,.3);margin-bottom:2rem;text-align:left;}
.phone-box .ttl{display:flex;align-items:center;gap:.5rem;color:var(--gold);font-size:.8rem;text-transform:uppercase;letter-spacing:.15em;margin-bottom:1rem;}
.phone-box .ttl svg{width:1rem;height:1rem;}
.phone-box a{display:flex;align-items:center;justify-content:space-between;padding:.5rem 0;transition:color .2s;}
.phone-box a:hover{color:var(--gold);}
.phone-box a:not(:last-child){border-bottom:1px solid rgba(45,40,35,.4);}
.phone-box .who{font-family:var(--font-display);}
.back-link{display:inline-flex;align-items:center;gap:.5rem;font-size:.875rem;color:var(--muted-foreground);transition:color .2s;}
.back-link:hover{color:var(--gold);}
.back-link svg{width:1rem;height:1rem;}

/* ---------- Confidentialité ---------- */
.legal-header{position:fixed;top:0;left:0;right:0;z-index:50;background:rgba(14,13,11,.72);backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px);border-bottom:1px solid rgba(45,40,35,.5);}
.legal-nav{max-width:var(--max);margin:0 auto;height:4rem;padding:0 1.5rem;display:flex;align-items:center;justify-content:space-between;}
.legal-nav .home{font-family:var(--font-display);font-size:1.05rem;transition:color .2s;}
.legal-nav .home:hover{color:var(--gold);}
.legal-main{padding:7rem 1.5rem 6rem;}
.legal-inner{max-width:48rem;margin:0 auto;}
.legal-title{display:flex;align-items:center;gap:.75rem;margin-bottom:2rem;}
.legal-title svg{width:2rem;height:2rem;color:var(--gold);}
.legal-title h1{font-size:clamp(1.875rem,5vw,2.25rem);}
.legal-body{display:flex;flex-direction:column;gap:2.5rem;color:var(--muted-foreground);line-height:1.7;}
.legal-body h2{color:var(--foreground);font-family:var(--font-display);font-size:1.25rem;margin-bottom:.75rem;}
.legal-body a{color:var(--foreground);}
.legal-body a:hover{color:var(--gold);}
.legal-contact{margin-top:.75rem;display:flex;flex-direction:column;gap:.25rem;color:var(--foreground);}
.legal-updated{font-size:.75rem;padding-top:1rem;border-top:1px solid rgba(45,40,35,.5);}

/* ---------- 404 ---------- */
.nf{min-height:100vh;display:flex;align-items:center;justify-content:center;padding:0 1.5rem;text-align:center;}
.nf h1{font-size:5rem;color:var(--gold);}
.nf h2{font-size:1.25rem;margin-top:1rem;}
.nf p{margin-top:.5rem;font-size:.875rem;color:var(--muted-foreground);}
.nf .actions{margin-top:1.5rem;display:flex;gap:.5rem;justify-content:center;flex-wrap:wrap;}

/* ---------- Reveal ---------- */
/* La especificidad debe superar a `html.js [data-reveal]` para que el
   estado visible prevalezca al añadir la clase .in vía IntersectionObserver. */
html.js [data-reveal].in{opacity:1;transform:none;transition:opacity .8s ease,transform .8s ease;}

/* ---------- Responsive ---------- */
@media(min-width:640px){
  .wrap,.nav,.legal-nav{padding-left:2rem;padding-right:2rem;}
  .sec{padding:5rem 1.5rem;}
  .hero-actions{flex-direction:row;}
  .hero-tels{flex-direction:row;gap:1.5rem;}
  .hero-tels .sep{display:inline;}
  .gallery{grid-template-columns:repeat(2,1fr);gap:1.5rem;}
  .team-grid{grid-template-columns:repeat(2,1fr);gap:3rem;}
  .contact-row{grid-template-columns:repeat(2,1fr);}
  .portrait-frame .accent{display:block;}
}
@media(min-width:768px){
  .nav-links{display:flex;}
  .nav-cta{display:inline-flex;}
  .nav-toggle{display:none;}
  .histoire-grid{grid-template-columns:1fr 1fr;gap:5rem;}
  .fondateur-grid{grid-template-columns:2fr 3fr;gap:4rem;}
  .services-grid{grid-template-columns:1fr 1fr;gap:4rem;}
  .contact-grid{grid-template-columns:1fr 1fr;}
}
@media(min-width:1024px){
  .team-grid{grid-template-columns:repeat(3,1fr);}
  .gallery{grid-template-columns:repeat(4,1fr);}
}

/* ---------- Accesibilidad / movimiento reducido ---------- */
@media(prefers-reduced-motion:reduce){
  *{animation:none!important;transition:none!important;scroll-behavior:auto!important;}
  html.js [data-reveal]{opacity:1;transform:none;}
}

/* ---------- Iconos (Lucide, inline) ---------- */
.ico{fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;width:1.25rem;height:1.25rem;display:inline-block;vertical-align:middle;flex-shrink:0;}
.ico-fill{fill:currentColor;stroke:none;width:1.25rem;height:1.25rem;display:inline-block;flex-shrink:0;}

/* ============================================================
   AÑADIDOS v2 — reseñas (Trustindex), pie enriquecido, legales
   ============================================================ */

/* ---------- Sección Avis / Trustindex ---------- */
.avis-head .stars{display:inline-flex;gap:.15rem;color:var(--gold);font-size:1.4rem;line-height:1;margin-bottom:.75rem;}
.avis-summary{display:flex;flex-direction:column;align-items:center;gap:.35rem;margin-bottom:2.5rem;}
.avis-rating{font-family:var(--font-display);font-size:3rem;color:var(--gold);line-height:1;}
.avis-meta{font-size:.8rem;letter-spacing:.15em;text-transform:uppercase;color:var(--muted-foreground);}
.avis-meta b{color:var(--foreground);font-weight:500;}
.ti-mount{max-width:72rem;margin:0 auto;min-height:40px;}
.ti-placeholder{max-width:48rem;margin:0 auto;border:1px dashed rgba(203,162,87,.4);background:rgba(26,23,20,.3);padding:1.5rem;text-align:center;color:var(--muted-foreground);font-size:.85rem;line-height:1.6;}
.avis-cta{text-align:center;margin-top:2.5rem;}

/* ---------- Pie enriquecido ---------- */
.footer-rich{border-top:1px solid rgba(45,40,35,.5);padding:3.5rem 1.5rem 0;}
.footer-cols{max-width:var(--max);margin:0 auto;display:grid;gap:2.5rem;align-items:end;}
.fcol h4{font-family:var(--font-display);font-size:1.05rem;color:var(--foreground);margin-bottom:1.1rem;letter-spacing:0;}
.fcol .flockup{height:auto;width:170px;max-width:60%;margin-bottom:1.1rem;}
.fcol address{font-style:normal;color:var(--muted-foreground);font-size:.875rem;line-height:1.8;}
.fcol address a:hover{color:var(--gold);}
.fcol ul{display:flex;flex-direction:column;gap:.65rem;}
.fcol ul a{color:var(--muted-foreground);font-size:.9rem;transition:color .2s;display:inline-flex;align-items:center;gap:.5rem;}
.fcol ul a:hover{color:var(--gold);}
.fcol ul svg{width:.95rem;height:.95rem;color:var(--gold);}
.fhours li{display:flex;justify-content:space-between;gap:1rem;color:var(--muted-foreground);font-size:.85rem;}
.fhours li .h{color:var(--foreground);}
.fhours li .closed{font-style:italic;}
.footer-bottom{max-width:var(--max);margin:2.5rem auto 0;padding:1.5rem 0 2rem;border-top:1px solid rgba(45,40,35,.5);display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:1rem;}
.footer-bottom .copy{font-size:.8rem;color:var(--muted-foreground);}
.footer-bottom .badge{display:inline-flex;align-items:center;gap:.45rem;font-size:.72rem;letter-spacing:.1em;text-transform:uppercase;color:var(--gold);border:1px solid rgba(203,162,87,.35);padding:.4rem .8rem;border-radius:9999px;}
.footer-bottom .badge svg{width:.9rem;height:.9rem;}
.footer-credit{font-size:.68rem;letter-spacing:.08em;color:rgba(168,154,133,.6);text-align:center;padding-bottom:2rem;}
.footer-credit a:hover{color:var(--gold);}

@media(min-width:640px){ .footer-cols{grid-template-columns:1fr 1fr;} }
@media(min-width:1024px){ .footer-cols{grid-template-columns:1.5fr 1fr 1fr 1.2fr;} }

/* ---------- Contenido legal extenso ---------- */
.legal-body h2{margin-top:.5rem;}
.legal-body h3{color:var(--gold);font-family:var(--font-display);font-size:1.05rem;margin:1.25rem 0 .5rem;font-weight:500;}
.legal-body p{margin-bottom:.9rem;}
.legal-body strong{color:var(--foreground);font-weight:600;}
.legal-body em{color:var(--muted-foreground);}
.legal-body ul{list-style:disc;padding-left:1.4rem;margin:.5rem 0 1rem;display:flex;flex-direction:column;gap:.5rem;}
.legal-body ul li{line-height:1.65;}
.legal-body a{color:var(--gold);}
.legal-body a:hover{text-decoration:underline;}
.legal-body .lead{font-size:1.05rem;color:var(--foreground);}
.legal-body .meta-date{font-style:italic;color:var(--muted-foreground);font-size:.9rem;margin-bottom:1.5rem;}
.legal-toc{display:flex;flex-wrap:wrap;gap:.5rem;margin:1.5rem 0 2.5rem;}
.legal-toc a{font-size:.78rem;border:1px solid rgba(45,40,35,.7);padding:.35rem .75rem;color:var(--muted-foreground);transition:all .2s;}
.legal-toc a:hover{border-color:var(--gold);color:var(--gold);text-decoration:none;}
.legal-back-links{margin-top:3rem;padding-top:1.5rem;border-top:1px solid rgba(45,40,35,.5);display:flex;flex-wrap:wrap;gap:.5rem 1.5rem;}
.legal-back-links a{font-size:.8rem;color:var(--muted-foreground);}
.legal-back-links a:hover{color:var(--gold);}

/* ---------- Salón: dos espacios (Elle / Lui) ---------- */
.salon-duo{max-width:var(--max);margin:0 auto;display:grid;gap:1.25rem;grid-template-columns:1fr;}
@media(min-width:768px){.salon-duo{grid-template-columns:1fr 1fr;}}
.salon-fig{position:relative;margin:0;overflow:hidden;border:1px solid rgba(45,40,35,.6);border-radius:2px;}
.salon-fig img{width:100%;aspect-ratio:16/10;object-fit:cover;display:block;transition:transform .8s ease;}
.salon-fig:hover img{transform:scale(1.04);}
.salon-fig::after{content:"";position:absolute;inset:0;background:linear-gradient(to top,rgba(14,13,11,.7),transparent 50%);pointer-events:none;}
.salon-fig figcaption{position:absolute;left:1.1rem;bottom:.9rem;z-index:1;font-family:var(--font-display);font-style:italic;font-size:1.3rem;color:var(--foreground);text-shadow:0 2px 14px rgba(0,0,0,.8);}
.salon-caption{max-width:46rem;margin:1.75rem auto 0;text-align:center;color:var(--muted-foreground);font-size:1.05rem;line-height:1.7;}

/* ---------- Tarjetas de reseñas (Avis) ---------- */
.avis-grid{max-width:var(--max);margin:0 auto;display:grid;gap:1.1rem;grid-template-columns:1fr;}
@media(min-width:640px){.avis-grid{grid-template-columns:1fr 1fr;}}
@media(min-width:1000px){.avis-grid{grid-template-columns:repeat(3,1fr);}}
.avis-card{margin:0;background:var(--card);border:1px solid rgba(45,40,35,.6);border-radius:3px;padding:1.5rem 1.4rem;display:flex;flex-direction:column;gap:.9rem;transition:border-color .3s,transform .3s;}
.avis-card:hover{border-color:rgba(203,162,87,.5);transform:translateY(-3px);}
.avis-top{display:flex;align-items:center;justify-content:space-between;}
.avis-card .gmark{font-family:var(--font-display);font-weight:600;font-size:1.05rem;color:var(--gold);width:1.7rem;height:1.7rem;display:grid;place-items:center;border:1px solid rgba(203,162,87,.4);border-radius:50%;}
.avis-card .stars{color:var(--gold);font-size:.95rem;letter-spacing:.05em;}
.avis-card blockquote{margin:0;color:var(--foreground);font-size:.97rem;line-height:1.65;flex:1;}
.avis-card figcaption{display:flex;flex-direction:column;gap:.12rem;border-top:1px solid rgba(45,40,35,.5);padding-top:.8rem;}
.avis-card .who{font-weight:500;color:var(--foreground);font-size:.9rem;}
.avis-card .when{font-size:.74rem;color:var(--muted-foreground);letter-spacing:.03em;}
.avis-actions{display:flex;flex-wrap:wrap;gap:.75rem;justify-content:center;align-items:center;margin-top:2.5rem;}

/* ---------- Modal Réservation (Bientôt disponible) ---------- */
.rdv-modal{position:fixed;inset:0;z-index:200;display:flex;align-items:center;justify-content:center;padding:1.25rem;}
.rdv-modal[hidden]{display:none;}
.rdv-scrim{position:absolute;inset:0;background:rgba(8,7,6,.78);backdrop-filter:blur(4px);animation:rdvFade .25s ease;}
.rdv-dialog{position:relative;z-index:1;width:100%;max-width:30rem;background:var(--card);border:1px solid rgba(203,162,87,.25);border-radius:6px;padding:2.75rem 2rem 2.25rem;text-align:center;box-shadow:0 30px 80px rgba(0,0,0,.6);animation:rdvPop .3s cubic-bezier(.2,.8,.25,1);}
.rdv-x{position:absolute;top:.85rem;right:.85rem;width:2.1rem;height:2.1rem;display:grid;place-items:center;background:transparent;border:1px solid var(--border);border-radius:50%;color:var(--muted-foreground);cursor:pointer;transition:all .2s;}
.rdv-x:hover{color:var(--gold);border-color:var(--gold);}
.rdv-x svg{width:1.05rem;height:1.05rem;fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round;}
.rdv-badge{width:3.6rem;height:3.6rem;margin:0 auto 1.25rem;border-radius:50%;display:grid;place-items:center;background:rgba(203,162,87,.12);border:1px solid rgba(203,162,87,.35);}
.rdv-badge .ico{width:1.7rem;height:1.7rem;color:var(--gold);fill:none;stroke:currentColor;stroke-width:1.6;}
.rdv-dialog h2{font-size:2rem;margin:.15rem 0 1rem;}
.rdv-dialog p{color:var(--muted-foreground);font-size:.97rem;line-height:1.65;max-width:24rem;margin:0 auto 1.6rem;}
.rdv-phones{display:flex;flex-direction:column;gap:.7rem;}
.rdv-phone{display:flex;align-items:center;justify-content:center;gap:.7rem;padding:.85rem 1rem;border:1px solid var(--border);border-radius:4px;color:var(--foreground);font-size:1rem;transition:all .2s;}
.rdv-phone:hover{border-color:var(--gold);background:rgba(203,162,87,.06);}
.rdv-phone .ico{width:1.15rem;height:1.15rem;color:var(--gold);fill:none;stroke:currentColor;stroke-width:2;}
.rdv-phone b{color:var(--gold);font-weight:600;}
@keyframes rdvFade{from{opacity:0}to{opacity:1}}
@keyframes rdvPop{from{opacity:0;transform:translateY(14px) scale(.98)}to{opacity:1;transform:none}}
body.rdv-open{overflow:hidden;}

/* ---------- Sello flotante (Avis Google) ---------- */
.trust-badge{position:fixed;right:1.1rem;bottom:1.1rem;z-index:150;display:flex;align-items:stretch;background:var(--card);border:1px solid rgba(203,162,87,.35);border-radius:10px;box-shadow:0 12px 34px rgba(0,0,0,.5);opacity:0;transform:translateY(16px);transition:opacity .45s ease,transform .45s ease;}
.trust-badge.show{opacity:1;transform:none;}
.trust-badge[hidden]{display:none;}
.tb-link{display:flex;align-items:center;gap:.7rem;padding:.7rem .9rem .7rem .8rem;}
.tb-link:hover .tb-g{border-color:var(--gold);background:rgba(203,162,87,.1);}
.tb-g{width:2rem;height:2rem;flex:none;display:grid;place-items:center;font-family:var(--font-display);font-weight:600;font-size:1.1rem;color:var(--gold);border:1px solid rgba(203,162,87,.45);border-radius:50%;transition:all .2s;}
.tb-info{display:flex;flex-direction:column;line-height:1.25;}
.tb-stars{color:var(--gold);font-size:.82rem;letter-spacing:.04em;white-space:nowrap;}
.tb-stars b{color:var(--foreground);font-weight:600;margin-left:.2rem;}
.tb-sub{font-size:.72rem;color:var(--muted-foreground);letter-spacing:.02em;white-space:nowrap;}
.tb-close{flex:none;width:1.5rem;background:transparent;border:none;border-left:1px solid var(--border);color:var(--muted-foreground);cursor:pointer;display:grid;place-items:center;border-radius:0 10px 10px 0;transition:color .2s;}
.tb-close:hover{color:var(--gold);}
.tb-close svg{width:.85rem;height:.85rem;fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round;}
@media(max-width:520px){.trust-badge{right:.7rem;bottom:.7rem;}.tb-sub{display:none;}.tb-link{padding:.55rem .7rem;gap:.55rem;}}

/* ---------- Carrières (recrutement) ---------- */
.career-wrap{max-width:var(--max);margin:0 auto;display:grid;gap:1.5rem;grid-template-columns:1fr;}
@media(min-width:900px){.career-wrap{grid-template-columns:1.55fr 1fr;align-items:start;}}
.career-ad{background:var(--card);border:1px solid rgba(45,40,35,.6);border-radius:4px;padding:2.1rem 1.9rem;}
.career-tag{display:inline-block;font-size:.7rem;letter-spacing:.18em;text-transform:uppercase;color:var(--gold);border:1px solid rgba(203,162,87,.4);border-radius:999px;padding:.32rem .9rem;margin-bottom:1.1rem;}
.career-ad h3{font-size:1.9rem;margin:0 0 .35rem;}
.career-meta{color:var(--muted-foreground);font-size:.9rem;margin-bottom:1.2rem;letter-spacing:.01em;}
.career-ad>p{color:var(--muted-foreground);line-height:1.7;margin:0 0 1.6rem;}
.career-cols{display:grid;gap:1.6rem;grid-template-columns:1fr;}
@media(min-width:560px){.career-cols{grid-template-columns:1fr 1fr;}}
.career-cols h4{font-family:var(--font-display);font-style:italic;font-size:1.2rem;color:var(--foreground);margin:0 0 .8rem;}
.career-cols ul{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:.6rem;}
.career-cols li{position:relative;padding-left:1.4rem;color:var(--muted-foreground);font-size:.92rem;line-height:1.5;}
.career-cols li::before{content:"";position:absolute;left:0;top:.5em;width:.5rem;height:.5rem;border:1px solid var(--gold);transform:rotate(45deg);}
.career-apply{background:linear-gradient(160deg,rgba(203,162,87,.09),rgba(26,23,20,.35));border:1px solid rgba(203,162,87,.28);border-radius:4px;padding:2.1rem 1.7rem;display:flex;flex-direction:column;gap:.95rem;}
@media(min-width:900px){.career-apply{position:sticky;top:6rem;}}
.career-apply h3{font-size:1.55rem;margin:0;}
.career-apply>p{color:var(--muted-foreground);line-height:1.6;margin:0 0 .2rem;font-size:.95rem;}
.career-apply .btn{width:100%;justify-content:center;}
.career-note{font-size:.78rem;color:var(--muted-foreground);margin:.5rem 0 0;line-height:1.55;}
