/*!
Theme Name: prestige-custom-theme
Theme URI: https://violet-reindeer-570864.hostingersite.com/
Author: Prestige Custom
Author URI: https://violet-reindeer-570864.hostingersite.com/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: prestige-custom-theme
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/



/* ===== CSS depuis velox-auto.html ===== */


:root{
  --c-black:#050505;
  --c-deep:#0b0d10;
  --c-surface:#11151a;
  --c-border:rgba(255,255,255,.10);
  --c-border2:rgba(255,255,255,.16);
  --c-text:#f5f5f5;
  --c-muted:rgba(245,245,245,.64);
  --c-orange:#ff3b1f;
  --c-orange2:#ff7a18;
  --c-glow:rgba(255,59,31,.16);
  --f-display:"Barlow Condensed",sans-serif;
  --f-body:"Barlow Condensed",sans-serif;
  --max:1240px;
  --gut:clamp(18px,5vw,78px);
  --tr:.3s cubic-bezier(.25,.46,.45,.94);
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:var(--f-body);
  background:var(--c-black);
  color:var(--c-text);
  overflow-x:hidden;
}
img{display:block;max-width:100%}
a{text-decoration:none;color:inherit}
button,input,select,textarea{font-family:inherit}
button{cursor:pointer;border:0}
ul{list-style:none}

.container{
  width:100%;
  max-width:var(--max);
  margin:auto;
  padding-inline:var(--gut);
}

.section{
  padding:clamp(64px,8vw,110px) 0;
}

.label{
  font-size:11px;
  font-weight:800;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--c-orange);
}

.h1,.h2{
  font-family:var(--f-display);
  text-transform:uppercase;
  letter-spacing:-.035em;
  color:#fff;
}

.h1{
  font-size:clamp(3rem,7vw,6.4rem);
  line-height:.88;
  font-weight:900;
}

.h2{
  font-size:clamp(2.2rem,4.6vw,4rem);
  line-height:.94;
  font-weight:900;
}

.h1 em,.h2 em{
  font-style:italic;
  color:#fff;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:14px 28px;
  border-radius:999px;
  font-size:12px;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
  transition:var(--tr);
  white-space:nowrap;
}

.btn-primary{
  background:linear-gradient(135deg,var(--c-orange),var(--c-orange2));
  color:#fff;
  box-shadow:0 14px 45px rgba(255,59,31,.24);
}

.btn-primary:hover{
  transform:translateY(-2px);
  box-shadow:0 20px 60px rgba(255,59,31,.32);
}

.btn-outline{
  border:1px solid var(--c-border2);
  color:#fff;
}

.btn-outline:hover{
  border-color:var(--c-orange);
  color:var(--c-orange);
}

/* HEADER */
.site-header{
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:1000;
  padding:16px 0;
  background:rgba(5,5,5,.84);
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(255,255,255,.06);
}

.header-inner{
  min-height:62px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.logo-img{
  height:58px;
  width:auto;
  max-width:250px;
  object-fit:contain;
}

.main-nav{
  display:flex;
  align-items:center;
  gap:34px;
}

.nav-link{
  font-family:var(--f-display);
  font-size:15px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:rgba(255,255,255,.74);
}

.nav-link:hover{
  color:var(--c-orange);
}

.header-actions{
  display:flex;
  align-items:center;
  gap:14px;
}

.tel-link{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:12px;
  font-weight:800;
  color:#fff;
}

.tel-dot{
  width:7px;
  height:7px;
  border-radius:50%;
  background:var(--c-orange);
}

/* ==========================================================
   FINAL FIX BURGER MENU WORDPRESS
========================================================== */

/* BURGER */
.burger{
  position:relative !important;
  width:46px !important;
  height:46px !important;
  display:none;
  justify-content:center;
  align-items:center;
  background:transparent !important;
  border:0 !important;
  cursor:pointer;
  z-index:2001;
  transition:
    opacity .35s ease,
    transform .35s ease,
    visibility .35s ease;
}

.burger span{
  position:absolute !important;
  width:26px !important;
  height:2px !important;
  background:#fff !important;
  border-radius:999px;
  transition:all .35s ease !important;
}

/* 3 traits */
.burger span:nth-child(1){
  top:14px;
}

.burger span:nth-child(2){
  top:22px;
}

.burger span:nth-child(3){
  top:30px;
}

/* ===== CROIX ===== */
.burger.active span:nth-child(1){
  top:22px !important;
  transform:rotate(45deg) !important;
}

.burger.active span:nth-child(2){
  opacity:0 !important;
  transform:scaleX(0) !important;
}

.burger.active span:nth-child(3){
  top:22px !important;
  transform:rotate(-45deg) !important;
}

/* ===== MENU MOBILE ===== */
.mobile-menu{
  position:fixed !important;
  inset:0 !important;
  z-index:1999 !important;
  display:flex !important;
  flex-direction:column !important;
  gap:18px !important;
  padding:120px 28px 40px !important;

  background:rgba(5,5,5,.98) !important;
  backdrop-filter:blur(18px);

  opacity:0 !important;
  visibility:hidden !important;
  pointer-events:none !important;
  transform:translateY(-20px) !important;

  transition:
    opacity .35s ease,
    transform .35s ease,
    visibility .35s ease !important;
}

.mobile-menu.open{
  opacity:1 !important;
  visibility:visible !important;
  pointer-events:auto !important;
  transform:translateY(0) !important;
}

.mobile-menu a{
  font-family:var(--f-display) !important;
  font-size:clamp(1.8rem,9vw,3rem) !important;
  font-weight:700 !important;
  text-transform:uppercase !important;
  color:#fff !important;
  text-decoration:none !important;
  padding:14px 0 !important;
  border-bottom:1px solid rgba(255,255,255,.10);
  transition:all .25s ease;
}

.mobile-menu a:hover{
  color:var(--c-orange) !important;
  transform:translateX(5px);
}

/* CTA */
.mobile-rdv{
  margin-top:24px !important;
  border:none !important;
  border-radius:999px !important;
  text-align:center !important;
  padding:16px 22px !important;
  background:linear-gradient(
    135deg,
    var(--c-orange),
    var(--c-orange2)
  ) !important;

  font-size:12px !important;
  font-family:var(--f-body) !important;
  letter-spacing:.12em !important;
}

/* ===== MOBILE / DESKTOP TRANSITION ===== */
@media(max-width:960px){

  .burger{
    display:flex !important;
    opacity:1 !important;
    visibility:visible !important;
    transform:translateY(0) scale(1) !important;
  }

  .main-nav,
  .header-actions{
    display:none !important;
  }
}

@media(min-width:961px){

  .burger{
    opacity:0 !important;
    visibility:hidden !important;
    pointer-events:none !important;
    transform:translateY(-8px) scale(.92) !important;
  }

  .mobile-menu{
    opacity:0 !important;
    visibility:hidden !important;
    pointer-events:none !important;
  }
}
.mobile-nav{
  display:none;
}

/* HERO */
.hero{
  padding-top:clamp(120px,12vw,155px);
  padding-bottom:clamp(50px,7vw,88px);
  position:relative;
  overflow:hidden;
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg,rgba(5,5,5,.95),rgba(5,5,5,.72),rgba(5,5,5,.92)),
    url("https://images.unsplash.com/photo-1617788138017-80ad40651399?q=80&w=2400&auto=format&fit=crop");
  background-size:cover;
  background-position:center;
  opacity:.82;
}

.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 72% 20%,rgba(255,59,31,.28),transparent 34%),
    radial-gradient(circle at 18% 80%,rgba(255,122,24,.12),transparent 36%);
}

.hero-inner{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:clamp(28px,5vw,70px);
  align-items:center;
}

.hero-content{
  max-width:720px;
}

.hero-title{
  margin-top:20px;
}

.hero-text{
  margin-top:24px;
  max-width:620px;
  color:var(--c-muted);
  font-size:clamp(1rem,1.4vw,1.15rem);
  line-height:1.75;
}

.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:34px;
}

.hero-card{
  position:relative;
  overflow:hidden;
  border-radius:34px;
  border:1px solid rgba(255,255,255,.12);
  background:linear-gradient(145deg,rgba(255,255,255,.09),rgba(255,255,255,.025));
  padding:20px;
  box-shadow:0 35px 110px rgba(0,0,0,.45);
}

.hero-card img{
  width:100%;
  height:420px;
  object-fit:cover;
  border-radius:24px;
}

.hero-badges{
  position:absolute;
  left:36px;
  bottom:36px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.hero-badges span{
  padding:8px 13px;
  border-radius:999px;
  background:rgba(0,0,0,.64);
  border:1px solid rgba(255,255,255,.12);
  backdrop-filter:blur(12px);
  color:#fff;
  font-size:11px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}

/* ABOUT */
.about-split{
  display:grid;
  grid-template-columns:minmax(0,520px) minmax(0,540px);
  gap:clamp(34px,5vw,68px);
  align-items:center;
  justify-content:center;
}

.about-img img{
  width:100%;
  height:340px;
  object-fit:cover;
  border-radius:28px;
  border:1px solid var(--c-border2);
}

.about-text{
  margin-top:20px;
  color:var(--c-muted);
  line-height:1.75;
  font-size:1rem;
}

.about-points{
  display:grid;
  gap:10px;
  margin-top:24px;
}

.about-points div{
  display:flex;
  gap:12px;
  align-items:center;
  padding:12px 14px;
  border-radius:16px;
  background:rgba(255,255,255,.04);
  border:1px solid var(--c-border);
  font-size:.92rem;
  color:#fff;
}

.about-points span{
  color:var(--c-orange);
  font-weight:900;
}

/* PACKS */
.packs{
  background:
    radial-gradient(circle at 50% 0%,rgba(255,59,31,.16),transparent 35%),
    var(--c-deep);
}

.section-head-flex{
  display:flex;
  justify-content:space-between;
  gap:28px;
  align-items:flex-end;
  flex-wrap:wrap;
}

.section-intro{
  max-width:440px;
  color:var(--c-muted);
  line-height:1.7;
}

.pack-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:26px;
  margin-top:54px;
}

.pack-card{
  overflow:hidden;
  border-radius:32px;
  border:1px solid var(--c-border);
  background:linear-gradient(145deg,rgba(255,255,255,.07),rgba(255,255,255,.022));
  transition:var(--tr);
}

.pack-card:hover{
  transform:translateY(-6px);
  border-color:rgba(255,59,31,.45);
}

.pack-card.featured{
  border-color:rgba(255,59,31,.55);
  box-shadow:0 24px 90px rgba(255,59,31,.12);
}

.pack-img{
  height:250px;
  overflow:hidden;
}

.pack-img img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.pack-content{
  padding:28px;
}

.pack-tag{
  display:inline-flex;
  padding:7px 13px;
  border-radius:999px;
  background:linear-gradient(135deg,var(--c-orange),var(--c-orange2));
  color:#fff;
  font-size:11px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.1em;
}

.pack-title{
  margin-top:18px;
  font-family:var(--f-display);
  font-size:clamp(2rem,3.4vw,3rem);
  line-height:.9;
  text-transform:uppercase;
}

.pack-desc{
  margin-top:14px;
  color:var(--c-muted);
  line-height:1.68;
  font-size:.96rem;
}

.pack-list{
  display:grid;
  gap:8px;
  margin-top:18px;
  color:#fff;
  font-size:.9rem;
}

.pack-bottom{
  margin-top:24px;
  padding-top:22px;
  border-top:1px solid var(--c-border);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.price strong{
  display:block;
  font-family:var(--f-display);
  font-size:3rem;
  line-height:1;
}

.price span{
  display:block;
  color:var(--c-muted);
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.12em;
}

/* REALISATIONS */
.real-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:26px;
  margin-top:54px;
}

.real-card{
  overflow:hidden;
  border-radius:30px;
  border:1px solid var(--c-border);
  background:linear-gradient(145deg,rgba(255,255,255,.06),rgba(255,255,255,.02));
}

.real-card img{
  width:100%;
  height:320px;
  object-fit:cover;
}

.real-body{
  padding:24px;
}

.real-body h3{
  font-family:var(--f-display);
  font-size:1.8rem;
  line-height:.95;
  text-transform:uppercase;
}

.real-body p{
  margin-top:10px;
  color:var(--c-muted);
  line-height:1.65;
}

/* FAQ */
.faq{
  background:var(--c-deep);
}

.faq-list{
  max-width:860px;
  margin:48px auto 0;
}

.faq-item{
  border-bottom:1px solid var(--c-border);
}

.faq-q{
  width:100%;
  display:flex;
  justify-content:space-between;
  gap:20px;
  padding:22px 0;
  color:#fff;
  background:transparent;
  text-align:left;
  font-family:var(--f-display);
  font-size:1.35rem;
  font-weight:800;
  text-transform:uppercase;
}

.faq-a{
  max-height:0;
  overflow:hidden;
  transition:max-height .35s ease;
}

.faq-item.open .faq-a{
  max-height:220px;
}

.faq-a div{
  padding-bottom:22px;
  color:var(--c-muted);
  line-height:1.75;
}

/* CONTACT */
.contact-grid{
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:28px;
  margin-top:50px;
}

.info-card,.contact-card{
  border-radius:30px;
  border:1px solid var(--c-border);
  background:linear-gradient(145deg,rgba(255,255,255,.06),rgba(255,255,255,.02));
  padding:30px;
}

.info-list{
  display:grid;
  gap:16px;
  margin-top:24px;
}

.info-list div{
  color:var(--c-muted);
  line-height:1.6;
}

.info-list strong{
  display:block;
  color:#fff;
  margin-bottom:4px;
}

.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}

.form-full{
  grid-column:1/-1;
}

.form-control{
  width:100%;
  height:56px;
  padding:0 16px;
  border-radius:16px;
  border:1px solid var(--c-border2);
  background:rgba(255,255,255,.05);
  color:#fff;
  outline:none;
}

textarea.form-control{
  height:140px;
  padding:16px;
  resize:none;
}

.form-control::placeholder{
  color:rgba(255,255,255,.38);
}

/* MODAL */
.booking-modal{
  position:fixed;
  inset:0;
  z-index:3000;
  display:none;
  align-items:center;
  justify-content:center;
  padding:18px;
}

.booking-modal.open{
  display:flex;
}

.booking-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.8);
  backdrop-filter:blur(14px);
}

.booking-box{
  position:relative;
  z-index:2;
  width:min(650px,100%);
  max-height:90vh;
  overflow:auto;
  border-radius:30px;
  background:#0b0d10;
  border:1px solid rgba(255,255,255,.14);
  box-shadow:0 40px 140px rgba(0,0,0,.7);
}

.booking-close{
  position:absolute;
  right:18px;
  top:18px;
  width:38px;
  height:38px;
  border-radius:50%;
  color:#fff;
  background:rgba(255,255,255,.08);
  z-index:4;
  font-size:22px;
}

.booking-form{
  padding:38px;
}

.booking-step{
  display:none;
}

.booking-step.active{
  display:block;
}

.booking-step h2{
  margin-top:14px;
  font-family:var(--f-display);
  font-size:clamp(2.2rem,6vw,3.4rem);
  line-height:.9;
  text-transform:uppercase;
}

.selected-pack{
  margin-top:24px;
  padding:20px;
  border-radius:18px;
  border:1px solid var(--c-border2);
  background:rgba(255,255,255,.05);
}

.selected-pack strong{
  display:block;
}

.selected-pack span{
  display:block;
  margin-top:6px;
  color:var(--c-orange);
  font-weight:900;
}

.booking-option{
  margin-top:12px;
  padding:16px;
  border-radius:16px;
  border:1px solid var(--c-border);
  background:rgba(255,255,255,.04);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}

.booking-option input{
  width:18px;
  height:18px;
  accent-color:var(--c-orange);
}

.booking-option span{
  flex:1;
}

.booking-fields{
  display:grid;
  gap:12px;
  margin-top:24px;
}

.booking-fields.two{
  grid-template-columns:1fr 1fr;
}

.booking-form input,
.booking-form select,
.booking-form textarea{
  width:100%;
  padding:15px 16px;
  border-radius:16px;
  border:1px solid var(--c-border2);
  background:rgba(255,255,255,.05);
  color:#fff;
  outline:none;
}

.booking-form textarea{
  height:120px;
  resize:none;
}

.booking-note{
  margin-top:18px;
  color:var(--c-muted);
  line-height:1.65;
  font-size:.92rem;
}

/* FOOTER */
.site-footer{
  padding:48px 0 26px;
  background:#070707;
  border-top:1px solid var(--c-border);
}

.footer-inner{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:30px;
  flex-wrap:wrap;
}

.footer-logo img{
  height:72px;
  width:auto;
}

.footer-text{
  margin-top:12px;
  max-width:360px;
  color:var(--c-muted);
  line-height:1.7;
  font-size:.9rem;
}

.footer-links{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
  color:var(--c-muted);
  font-size:.9rem;
}

.footer-bottom{
  margin-top:34px;
  padding-top:20px;
  border-top:1px solid var(--c-border);
  color:var(--c-muted);
  font-size:.82rem;
}

/* RESPONSIVE */
@media(max-width:960px){
  .main-nav,.tel-link{display:none}
  .burger{display:flex}
  .header-actions .btn{padding:11px 16px;font-size:10px}
  .hero-inner,.about-split,.contact-grid{grid-template-columns:1fr}
  .hero-card img{height:320px}
  .pack-grid,.real-grid{grid-template-columns:1fr}
}

@media(max-width:560px){
  .section{padding:56px 0}
  .logo-img{height:44px}
  .hero{padding-top:110px}
  .hero-card img{height:260px}
  .hero-actions .btn{width:100%}
  .about-img img{height:250px}
  .pack-img{height:220px}
  .pack-bottom{flex-direction:column;align-items:flex-start}
  .pack-bottom .btn{width:100%}
  .real-card img{height:240px}
  .form-grid,.booking-fields.two{grid-template-columns:1fr}
  .booking-form{padding:30px 20px}
}

/* ==========================================================
   PATCH FINAL — LANDING CIEL ÉTOILÉ COMPACTE
========================================================== */

.h1{
  font-size:clamp(2.4rem,5vw,4.5rem) !important;
  line-height:.94 !important;
  font-weight:700 !important;
  letter-spacing:-.025em !important;
}

.h2{
  font-size:clamp(1.85rem,3.2vw,2.9rem) !important;
  line-height:.98 !important;
  font-weight:700 !important;
  letter-spacing:-.025em !important;
}

.pack-title{
  font-size:clamp(1.65rem,2.4vw,2.3rem) !important;
  font-weight:700 !important;
}

.real-body h3{
  font-size:1.35rem !important;
  font-weight:700 !important;
}

.faq-q{
  font-size:clamp(1rem,1.45vw,1.22rem) !important;
  font-weight:700 !important;
}

.hero{
  min-height:auto !important;
  padding-top:clamp(112px,10vw,145px) !important;
  padding-bottom:clamp(58px,7vw,88px) !important;
}

.hero::before{
  background:
    linear-gradient(
      90deg,
      rgba(5,5,5,.94) 0%,
      rgba(5,5,5,.78) 42%,
      rgba(5,5,5,.45) 72%,
      rgba(5,5,5,.88) 100%
    ),
    url("https://images.unsplash.com/photo-1617788138017-80ad40651399?q=80&w=2400&auto=format&fit=crop") !important;
  background-size:cover !important;
  background-position:center right !important;
}

.hero-inner{
  display:block !important;
}

.hero-content{
  max-width:690px !important;
}

.hero-title{
  margin-top:16px !important;
}

.hero-text{
  margin-top:20px !important;
  max-width:590px !important;
  font-size:clamp(.95rem,1.12vw,1.06rem) !important;
  line-height:1.68 !important;
}

.hero-actions{
  margin-top:28px !important;
}

.hero-card,
.hero-badges{
  display:none !important;
}

.pack-content{
  padding:24px !important;
}

.pack-bottom strong{
  font-size:2.45rem !important;
}

.section{
  padding:clamp(58px,7vw,94px) 0 !important;
}

@media(max-width:640px){
  .h1{
    font-size:clamp(2.1rem,10vw,3rem) !important;
  }

  .h2{
    font-size:clamp(1.7rem,7.8vw,2.35rem) !important;
  }

  .hero{
    padding-top:105px !important;
    padding-bottom:56px !important;
  }

  .hero::before{
    background-position:center !important;
  }
}


/* ==========================================================
   GALERIE PRESTIGE CUSTOM
========================================================== */

.gallery-section{
  background:
    radial-gradient(circle at 50% 0%, rgba(255,59,31,.12), transparent 34%),
    var(--c-black);
}

.pc-gallery{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  grid-auto-rows:220px;
  gap:16px;
  margin-top:54px;
}

.pc-gallery-item{
  position:relative;
  overflow:hidden;
  border-radius:28px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
}

.pc-gallery-item::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(to top, rgba(0,0,0,.42), transparent 58%);
  opacity:.7;
  pointer-events:none;
}

.pc-gallery-item img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .55s ease, filter .55s ease;
}

.pc-gallery-item:hover img{
  transform:scale(1.06);
  filter:contrast(1.05) saturate(1.08);
}

.pc-gallery-large{
  grid-column:span 2;
  grid-row:span 2;
}

.pc-gallery-tall{
  grid-row:span 2;
}

@media(max-width:900px){
  .pc-gallery{
    grid-template-columns:repeat(2,1fr);
    grid-auto-rows:210px;
  }

  .pc-gallery-large,
  .pc-gallery-tall{
    grid-column:span 1;
    grid-row:span 1;
  }
}

@media(max-width:560px){
  .pc-gallery{
    grid-template-columns:1fr;
    grid-auto-rows:240px;
    gap:14px;
  }

  .pc-gallery-item{
    border-radius:22px;
  }
}


/* ==========================================================
   PATCH GALERIE — 2 GRANDES EN HAUT / 2 PETITES EN BAS
========================================================== */

.pc-gallery-clean{
  display:grid !important;
  grid-template-columns:repeat(2,1fr) !important;
  grid-template-rows:360px 230px !important;
  gap:22px !important;
  margin-top:54px !important;
}

.pc-gallery-clean .pc-gallery-item{
  border-radius:30px !important;
  overflow:hidden !important;
  border:1px solid rgba(255,255,255,.12) !important;
  background:rgba(255,255,255,.04) !important;
}

.pc-gallery-clean .pc-gallery-item img{
  width:100% !important;
  height:100% !important;
  object-fit:cover !important;
}

.pc-gallery-clean .gallery-big{
  height:360px !important;
}

.pc-gallery-clean .gallery-small{
  height:230px !important;
}

@media(max-width:760px){
  .pc-gallery-clean{
    grid-template-columns:1fr !important;
    grid-template-rows:none !important;
    gap:16px !important;
  }

  .pc-gallery-clean .gallery-big,
  .pc-gallery-clean .gallery-small{
    height:250px !important;
  }
}


/* ==========================================================
   PATCH HEADER TRANSPARENT + NOIR AU SCROLL
========================================================== */

.site-header{
  background:transparent !important;
  backdrop-filter:none !important;
  border-bottom:1px solid transparent !important;
  box-shadow:none !important;
  transition:background .35s ease, backdrop-filter .35s ease, border-color .35s ease, box-shadow .35s ease, padding .35s ease !important;
}

.site-header.header-scrolled{
  background:rgba(5,5,5,.96) !important;
  backdrop-filter:blur(18px) !important;
  border-bottom:1px solid rgba(255,255,255,.08) !important;
  box-shadow:0 12px 45px rgba(0,0,0,.28) !important;
}


/* ==========================================================
   MOBILE BURGER MENU FIX
========================================================== */

.mobile-menu{
  position:fixed;
  inset:0;
  z-index:999;
  display:none;
  padding:110px var(--gut) 40px;
  background:rgba(5,5,5,.98);
  backdrop-filter:blur(18px);
}

.mobile-menu.open{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.mobile-menu a{
  font-family:var(--f-display);
  font-size:clamp(1.8rem,9vw,3rem);
  font-weight:700;
  text-transform:uppercase;
  color:#fff;
  padding:12px 0;
  border-bottom:1px solid rgba(255,255,255,.10);
}

.mobile-menu a:hover{
  color:var(--c-orange);
}

.burger.active span:nth-child(1){
  transform:rotate(45deg) translate(5px,5px);
}

.burger.active span:nth-child(2){
  opacity:0;
}

.burger.active span:nth-child(3){
  transform:rotate(-45deg) translate(5px,-5px);
}

.burger span{
  transition:.3s ease;
}


/* ==========================================================
   PATCH HEADER MOBILE — CTA DANS BURGER
========================================================== */

@media(max-width:960px){
  .header-actions{
    display:none !important;
  }

  .burger{
    display:flex !important;
  }
}

.mobile-menu .mobile-rdv{
  margin-top:22px;
  border-bottom:none !important;
  font-family:var(--f-body) !important;
  font-size:12px !important;
  letter-spacing:.12em !important;
  text-align:center;
  background:linear-gradient(135deg,var(--c-orange),var(--c-orange2));
  border-radius:999px;
  padding:15px 22px !important;
  color:#fff !important;
}


/* ==========================================================
   FOOTER MINIMAL PRESTIGE CUSTOM
========================================================== */

.site-footer{
  padding:46px 0 26px !important;
  background:#050505 !important;
  border-top:1px solid rgba(255,255,255,.10) !important;
}

.footer-minimal{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap:26px;
}

.footer-logo img{
  height:72px !important;
  width:auto !important;
  object-fit:contain !important;
}

.footer-contact{
  display:flex;
  justify-content:center;
  gap:clamp(34px,7vw,90px);
  flex-wrap:wrap;
}

.footer-contact div{
  display:flex;
  flex-direction:column;
  gap:7px;
  min-width:220px;
}

.footer-contact strong{
  font-family:var(--f-display);
  font-size:1.15rem;
  text-transform:uppercase;
  letter-spacing:.06em;
  color:#fff;
}

.footer-contact a,
.footer-contact span{
  color:var(--c-muted);
  font-size:.92rem;
  line-height:1.6;
}

.footer-contact a:hover{
  color:var(--c-orange);
}

.footer-legal{
  display:flex;
  justify-content:center;
  gap:18px;
  flex-wrap:wrap;
  padding-top:4px;
}

.footer-legal a{
  color:var(--c-muted);
  font-size:.82rem;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.footer-legal a:hover{
  color:var(--c-orange);
}

.footer-copy{
  width:100%;
  padding-top:22px;
  border-top:1px solid rgba(255,255,255,.08);
  color:rgba(255,255,255,.45);
  font-size:.8rem;
}

@media(max-width:620px){
  .footer-logo img{
    height:58px !important;
  }

  .footer-contact{
    gap:24px;
  }

  .footer-contact div{
    min-width:100%;
  }
}


/* ==========================================================
   PREMIUM LOCATION / MAP
========================================================== */

.location-section{
  padding:0 0 90px;
}

.location-card{
  position:relative;
  overflow:hidden;
  border-radius:34px;
  border:1px solid rgba(255,255,255,.08);
  background:
    radial-gradient(circle at top right, rgba(255,59,31,.12), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  backdrop-filter:blur(18px);
  display:grid;
  grid-template-columns:420px 1fr;
}

.location-content{
  padding:42px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.location-content .label{
  margin-bottom:14px;
}

.location-content h2{
  margin-bottom:14px;
}

.location-content p{
  color:rgba(255,255,255,.66);
  line-height:1.8;
  margin-bottom:26px;
}

.location-address{
  display:flex;
  align-items:flex-start;
  gap:14px;
  padding:20px;
  border-radius:22px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
}

.location-address-icon{
  width:52px;
  height:52px;
  border-radius:16px;
  flex-shrink:0;
  background:linear-gradient(135deg,var(--c-orange),#ff7a18);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:1.4rem;
}

.location-address strong{
  display:block;
  font-family:var(--f-display);
  font-size:1rem;
  letter-spacing:.06em;
  text-transform:uppercase;
  margin-bottom:6px;
}

.location-address span{
  color:rgba(255,255,255,.68);
  line-height:1.7;
}

.location-map{
  min-height:420px;
}

.location-map iframe{
  width:100%;
  height:100%;
  border:0;
  filter:grayscale(.18) contrast(1.02);
}

@media(max-width:980px){
  .location-card{
    grid-template-columns:1fr;
  }

  .location-map{
    min-height:320px;
  }
}

@media(max-width:620px){
  .location-content{
    padding:28px;
  }

  .location-map{
    min-height:280px;
  }
}


/* ===== CSS depuis prendre-rendez-vous.html ===== */


:root{
  --c-black:#050505;
  --c-deep:#0b0d10;
  --c-surface:#11151a;
  --c-border:rgba(255,255,255,.10);
  --c-border2:rgba(255,255,255,.16);
  --c-text:#f5f5f5;
  --c-muted:rgba(245,245,245,.64);
  --c-orange:#ff3b1f;
  --c-orange2:#ff7a18;
  --f-display:"Barlow Condensed",sans-serif;
  --f-body:"DM Sans",sans-serif;
  --max:1180px;
  --gut:clamp(18px,5vw,78px);
  --tr:.3s cubic-bezier(.25,.46,.45,.94);
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:var(--f-body);
  background:var(--c-black);
  color:var(--c-text);
  overflow-x:hidden;
}
a{text-decoration:none;color:inherit}
img{display:block;max-width:100%}
button,input,select,textarea{font-family:inherit}
button{border:0;cursor:pointer}
.container{max-width:var(--max);margin:auto;padding-inline:var(--gut)}

.label{
  font-size:11px;
  font-weight:800;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--c-orange);
}

.h1,.h2{
  font-family:var(--f-display);
  text-transform:uppercase;
  letter-spacing:-.025em;
  color:#fff;
}

.h1{
  font-size:clamp(2.4rem,5vw,4.5rem);
  line-height:.94;
  font-weight:700;
}

.h2{
  font-size:clamp(1.85rem,3.2vw,2.9rem);
  line-height:.98;
  font-weight:700;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:14px 28px;
  border-radius:999px;
  font-size:12px;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
  transition:var(--tr);
  white-space:nowrap;
}

.btn-primary{
  background:linear-gradient(135deg,var(--c-orange),var(--c-orange2));
  color:#fff;
  box-shadow:0 14px 45px rgba(255,59,31,.24);
}

.btn-outline{
  border:1px solid var(--c-border2);
  color:#fff;
  background:transparent;
}

/* HEADER */
.site-header{
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:1000;
  padding:16px 0;
  background:rgba(5,5,5,.86);
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(255,255,255,.06);
}

.header-inner{
  min-height:62px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.logo-img{
  height:58px;
  width:auto;
  max-width:250px;
  object-fit:contain;
}

.main-nav{
  display:flex;
  align-items:center;
  gap:34px;
}

.nav-link{
  font-family:var(--f-display);
  font-size:15px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:rgba(255,255,255,.74);
}

.nav-link:hover{color:var(--c-orange)}

.header-actions{
  display:flex;
  align-items:center;
  gap:14px;
}

.tel-link{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:12px;
  font-weight:800;
}

.tel-dot{
  width:7px;
  height:7px;
  border-radius:50%;
  background:var(--c-orange);
}

/* PAGE */
.rdv-page{
  min-height:100vh;
  padding-top:132px;
  padding-bottom:70px;
  background:
    radial-gradient(circle at 70% 10%,rgba(255,59,31,.20),transparent 32%),
    radial-gradient(circle at 15% 65%,rgba(255,122,24,.10),transparent 34%),
    var(--c-black);
}

.rdv-head{
  max-width:820px;
  margin-bottom:38px;
}

.rdv-head .h1{
  margin-top:16px;
}

.rdv-head p{
  margin-top:18px;
  max-width:640px;
  color:var(--c-muted);
  line-height:1.7;
}

.rdv-layout{
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:28px;
  align-items:start;
}

.rdv-summary{
  position:sticky;
  top:118px;
  border-radius:30px;
  padding:28px;
  border:1px solid var(--c-border);
  background:
    radial-gradient(circle at top right,rgba(255,59,31,.16),transparent 42%),
    linear-gradient(145deg,rgba(255,255,255,.07),rgba(255,255,255,.02));
}

.summary-price{
  margin-top:22px;
  padding:20px;
  border-radius:20px;
  border:1px solid var(--c-border2);
  background:rgba(255,255,255,.05);
}

.summary-price strong{
  display:block;
  font-family:var(--f-display);
  font-size:2.8rem;
  line-height:1;
}

.summary-price span{
  display:block;
  margin-top:6px;
  color:var(--c-muted);
  font-size:.9rem;
}

.summary-list{
  display:grid;
  gap:12px;
  margin-top:24px;
}

.summary-list div{
  color:var(--c-muted);
  line-height:1.6;
}

.summary-list b{
  color:#fff;
}

.rdv-card{
  border-radius:30px;
  padding:30px;
  border:1px solid var(--c-border);
  background:linear-gradient(145deg,rgba(255,255,255,.07),rgba(255,255,255,.02));
}

.progress{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:10px;
  margin-bottom:30px;
}

.progress-step{
  padding:12px 10px;
  border-radius:16px;
  border:1px solid var(--c-border);
  color:var(--c-muted);
  font-size:11px;
  font-weight:800;
  text-transform:uppercase;
  text-align:center;
}

.progress-step.active{
  background:linear-gradient(135deg,var(--c-orange),var(--c-orange2));
  color:#fff;
  border-color:transparent;
}

.step{
  display:none;
}

.step.active{
  display:block;
}

.step h2{
  margin-top:14px;
}

.step-intro{
  margin-top:14px;
  color:var(--c-muted);
  line-height:1.7;
  max-width:620px;
}

.option-grid{
  display:grid;
  gap:12px;
  margin-top:24px;
}

.option-card{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:16px;
  border-radius:18px;
  border:1px solid var(--c-border);
  background:rgba(255,255,255,.04);
  color:#fff;
}

.option-card input{
  width:18px;
  height:18px;
  accent-color:var(--c-orange);
}

.option-card span{
  flex:1;
}

.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  margin-top:24px;
}

.form-full{
  grid-column:1/-1;
}

.form-control{
  width:100%;
  height:56px;
  padding:0 16px;
  border-radius:16px;
  border:1px solid var(--c-border2);
  background:rgba(255,255,255,.05);
  color:#fff;
  outline:none;
}

textarea.form-control{
  height:130px;
  padding:16px;
  resize:none;
}

.form-control::placeholder{
  color:rgba(255,255,255,.38);
}

.step-actions{
  display:flex;
  justify-content:space-between;
  gap:12px;
  margin-top:28px;
}

.step-actions .btn{
  min-width:150px;
}

.notice{
  margin-top:20px;
  padding:16px;
  border-radius:18px;
  border:1px solid rgba(255,59,31,.24);
  background:rgba(255,59,31,.08);
  color:var(--c-muted);
  line-height:1.7;
}

/* FOOTER */
.site-footer{
  padding:40px 0 24px;
  background:#070707;
  border-top:1px solid var(--c-border);
}

.footer-inner{
  display:flex;
  justify-content:space-between;
  gap:28px;
  flex-wrap:wrap;
}

.footer-logo img{
  height:66px;
}

.footer-text{
  margin-top:12px;
  max-width:350px;
  color:var(--c-muted);
  line-height:1.7;
  font-size:.9rem;
}

.footer-links{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
  color:var(--c-muted);
  font-size:.9rem;
}

.footer-bottom{
  margin-top:30px;
  padding-top:18px;
  border-top:1px solid var(--c-border);
  color:var(--c-muted);
  font-size:.82rem;
}

@media(max-width:960px){
  .main-nav,.tel-link{display:none}
  .rdv-layout{grid-template-columns:1fr}
  .rdv-summary{position:relative;top:auto}
}

@media(max-width:620px){
  .logo-img{height:44px}
  .rdv-page{padding-top:112px}
  .progress{grid-template-columns:1fr 1fr}
  .form-grid{grid-template-columns:1fr}
  .step-actions{flex-direction:column}
  .step-actions .btn{width:100%}
  .rdv-card,.rdv-summary{padding:22px;border-radius:24px}
}

/* ==========================================================
   PATCH IMAGE FORMULE RENDEZ-VOUS
========================================================== */

.summary-visual{
  margin-top:22px;
  overflow:hidden;
  border-radius:22px;
  border:1px solid var(--c-border2);
  background:rgba(255,255,255,.04);
}

.summary-visual img{
  width:100%;
  height:190px;
  object-fit:cover;
  display:block;
}

@media(max-width:620px){
  .summary-visual img{
    height:160px;
  }
}


/* ==========================================================
   REQUIRED FIELDS / ERRORS
========================================================== */

.form-control.invalid{
  border-color:rgba(255,59,31,.85) !important;
  box-shadow:0 0 0 3px rgba(255,59,31,.14) !important;
}

.step-error{
  display:none;
  margin-top:18px;
  padding:14px 16px;
  border-radius:16px;
  border:1px solid rgba(255,59,31,.35);
  background:rgba(255,59,31,.10);
  color:#fff;
  font-size:.92rem;
  line-height:1.55;
}

.step-error.show{
  display:block;
}


/* ==========================================================
   PATCH HEADER TRANSPARENT + NOIR AU SCROLL
========================================================== */

.site-header{
  background:transparent !important;
  backdrop-filter:none !important;
  border-bottom:1px solid transparent !important;
  box-shadow:none !important;
  transition:background .35s ease, backdrop-filter .35s ease, border-color .35s ease, box-shadow .35s ease, padding .35s ease !important;
}

.site-header.header-scrolled{
  background:rgba(5,5,5,.96) !important;
  backdrop-filter:blur(18px) !important;
  border-bottom:1px solid rgba(255,255,255,.08) !important;
  box-shadow:0 12px 45px rgba(0,0,0,.28) !important;
}


/* ==========================================================
   MOBILE BURGER MENU FIX
========================================================== */

.mobile-menu{
  position:fixed;
  inset:0;
  z-index:999;
  display:none;
  padding:110px var(--gut) 40px;
  background:rgba(5,5,5,.98);
  backdrop-filter:blur(18px);
}

.mobile-menu.open{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.mobile-menu a{
  font-family:var(--f-display);
  font-size:clamp(1.8rem,9vw,3rem);
  font-weight:700;
  text-transform:uppercase;
  color:#fff;
  padding:12px 0;
  border-bottom:1px solid rgba(255,255,255,.10);
}

.mobile-menu a:hover{
  color:var(--c-orange);
}

.burger.active span:nth-child(1){
  transform:rotate(45deg) translate(5px,5px);
}

.burger.active span:nth-child(2){
  opacity:0;
}

.burger.active span:nth-child(3){
  transform:rotate(-45deg) translate(5px,-5px);
}

.burger span{
  transition:.3s ease;
}


/* ==========================================================
   PATCH HEADER MOBILE — CTA DANS BURGER
========================================================== */

@media(max-width:960px){
  .header-actions{
    display:none !important;
  }

  .burger{
    display:flex !important;
  }
}

.mobile-menu .mobile-rdv{
  margin-top:22px;
  border-bottom:none !important;
  font-family:var(--f-body) !important;
  font-size:12px !important;
  letter-spacing:.12em !important;
  text-align:center;
  background:linear-gradient(135deg,var(--c-orange),var(--c-orange2));
  border-radius:999px;
  padding:15px 22px !important;
  color:#fff !important;
}


/* ==========================================================
   FOOTER MINIMAL PRESTIGE CUSTOM
========================================================== */

.site-footer{
  padding:46px 0 26px !important;
  background:#050505 !important;
  border-top:1px solid rgba(255,255,255,.10) !important;
}

.footer-minimal{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap:26px;
}

.footer-logo img{
  height:72px !important;
  width:auto !important;
  object-fit:contain !important;
}

.footer-contact{
  display:flex;
  justify-content:center;
  gap:clamp(34px,7vw,90px);
  flex-wrap:wrap;
}

.footer-contact div{
  display:flex;
  flex-direction:column;
  gap:7px;
  min-width:220px;
}

.footer-contact strong{
  font-family:var(--f-display);
  font-size:1.15rem;
  text-transform:uppercase;
  letter-spacing:.06em;
  color:#fff;
}

.footer-contact a,
.footer-contact span{
  color:var(--c-muted);
  font-size:.92rem;
  line-height:1.6;
}

.footer-contact a:hover{
  color:var(--c-orange);
}

.footer-legal{
  display:flex;
  justify-content:center;
  gap:18px;
  flex-wrap:wrap;
  padding-top:4px;
}

.footer-legal a{
  color:var(--c-muted);
  font-size:.82rem;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.footer-legal a:hover{
  color:var(--c-orange);
}

.footer-copy{
  width:100%;
  padding-top:22px;
  border-top:1px solid rgba(255,255,255,.08);
  color:rgba(255,255,255,.45);
  font-size:.8rem;
}

@media(max-width:620px){
  .footer-logo img{
    height:58px !important;
  }

  .footer-contact{
    gap:24px;
  }

  .footer-contact div{
    min-width:100%;
  }
}


/* ==========================================================
   SELECT FORMULE IMAGE AUTO
========================================================== */

.summary-price small{
  display:block;
  margin-top:10px;
  color:var(--c-muted);
  font-size:.86rem;
  line-height:1.55;
}


/* ===== CSS depuis mentions-legales.html ===== */


:root{
  --c-black:#050505;
  --c-deep:#0b0d10;
  --c-surface:#11151a;
  --c-border:rgba(255,255,255,.10);
  --c-border2:rgba(255,255,255,.16);
  --c-text:#f5f5f5;
  --c-muted:rgba(245,245,245,.64);
  --c-orange:#ff3b1f;
  --c-orange2:#ff7a18;
  --f-display:"Barlow Condensed",sans-serif;
  --f-body:"DM Sans",sans-serif;
  --max:1180px;
  --gut:clamp(18px,5vw,78px);
}
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{font-family:var(--f-body);background:var(--c-black);color:var(--c-text);overflow-x:hidden}
a{text-decoration:none;color:inherit}
.container{max-width:var(--max);margin:auto;padding-inline:var(--gut)}
.label{font-size:11px;font-weight:800;letter-spacing:.16em;text-transform:uppercase;color:var(--c-orange)}
.h1,.h2{font-family:var(--f-display);text-transform:uppercase;letter-spacing:-.025em;color:#fff}
.h1{font-size:clamp(2.4rem,5vw,4.5rem);line-height:.94;font-weight:700}
.h2{font-size:clamp(1.8rem,3vw,2.7rem);line-height:.98;font-weight:700}
.btn{display:inline-flex;align-items:center;justify-content:center;padding:14px 28px;border-radius:999px;font-size:12px;font-weight:800;letter-spacing:.12em;text-transform:uppercase;white-space:nowrap}
.btn-primary{background:linear-gradient(135deg,var(--c-orange),var(--c-orange2));color:#fff}
.site-header{position:fixed;top:0;left:0;right:0;z-index:1000;padding:16px 0;background:rgba(5,5,5,.96);backdrop-filter:blur(18px);border-bottom:1px solid rgba(255,255,255,.08)}
.header-inner{min-height:62px;display:flex;align-items:center;justify-content:space-between;gap:24px}
.logo-img{height:58px;width:auto;max-width:250px;object-fit:contain}
.main-nav{display:flex;align-items:center;gap:34px}
.nav-link{font-family:var(--f-display);font-size:15px;font-weight:800;letter-spacing:.08em;text-transform:uppercase;color:rgba(255,255,255,.74)}
.nav-link:hover{color:var(--c-orange)}
.header-actions{display:flex;align-items:center;gap:14px}
.burger{display:none;flex-direction:column;gap:5px;padding:8px;background:transparent;border:0}
.burger span{display:block;width:26px;height:2px;background:#fff}
.legal-page{padding-top:150px;padding-bottom:80px;background:radial-gradient(circle at 70% 10%,rgba(255,59,31,.16),transparent 30%),var(--c-black)}
.legal-head{max-width:840px;margin-bottom:44px}
.legal-head .h1{margin-top:16px}
.legal-head p{margin-top:18px;color:var(--c-muted);line-height:1.7}
.legal-card{border-radius:30px;border:1px solid var(--c-border);background:linear-gradient(145deg,rgba(255,255,255,.07),rgba(255,255,255,.02));padding:clamp(24px,4vw,42px)}
.legal-block{padding:26px 0;border-bottom:1px solid var(--c-border)}
.legal-block:last-child{border-bottom:0}
.legal-block h2{font-family:var(--f-display);font-size:1.7rem;text-transform:uppercase;margin-bottom:12px}
.legal-block p,.legal-block li{color:var(--c-muted);line-height:1.75;font-size:.96rem}
.legal-block ul{padding-left:18px}
.site-footer{padding:40px 0 24px;background:#070707;border-top:1px solid var(--c-border)}
.footer-inner{display:flex;justify-content:space-between;gap:28px;flex-wrap:wrap}
.footer-logo img{height:66px}
.footer-text{margin-top:12px;max-width:350px;color:var(--c-muted);line-height:1.7;font-size:.9rem}
.footer-links{display:flex;gap:18px;flex-wrap:wrap;color:var(--c-muted);font-size:.9rem}
.footer-bottom{margin-top:30px;padding-top:18px;border-top:1px solid var(--c-border);color:var(--c-muted);font-size:.82rem}
@media(max-width:960px){.main-nav,.header-actions{display:none}.burger{display:flex}.logo-img{height:44px}}

/* ==========================================================
   FOOTER MINIMAL PRESTIGE CUSTOM
========================================================== */

.site-footer{
  padding:46px 0 26px !important;
  background:#050505 !important;
  border-top:1px solid rgba(255,255,255,.10) !important;
}

.footer-minimal{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap:26px;
}

.footer-logo img{
  height:72px !important;
  width:auto !important;
  object-fit:contain !important;
}

.footer-contact{
  display:flex;
  justify-content:center;
  gap:clamp(34px,7vw,90px);
  flex-wrap:wrap;
}

.footer-contact div{
  display:flex;
  flex-direction:column;
  gap:7px;
  min-width:220px;
}

.footer-contact strong{
  font-family:var(--f-display);
  font-size:1.15rem;
  text-transform:uppercase;
  letter-spacing:.06em;
  color:#fff;
}

.footer-contact a,
.footer-contact span{
  color:var(--c-muted);
  font-size:.92rem;
  line-height:1.6;
}

.footer-contact a:hover{
  color:var(--c-orange);
}

.footer-legal{
  display:flex;
  justify-content:center;
  gap:18px;
  flex-wrap:wrap;
  padding-top:4px;
}

.footer-legal a{
  color:var(--c-muted);
  font-size:.82rem;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.footer-legal a:hover{
  color:var(--c-orange);
}

.footer-copy{
  width:100%;
  padding-top:22px;
  border-top:1px solid rgba(255,255,255,.08);
  color:rgba(255,255,255,.45);
  font-size:.8rem;
}

@media(max-width:620px){
  .footer-logo img{
    height:58px !important;
  }

  .footer-contact{
    gap:24px;
  }

  .footer-contact div{
    min-width:100%;
  }
}


/* ===== CSS depuis conditions-generales-utilisation.html ===== */


:root{
  --c-black:#050505;
  --c-deep:#0b0d10;
  --c-surface:#11151a;
  --c-border:rgba(255,255,255,.10);
  --c-border2:rgba(255,255,255,.16);
  --c-text:#f5f5f5;
  --c-muted:rgba(245,245,245,.64);
  --c-orange:#ff3b1f;
  --c-orange2:#ff7a18;
  --f-display:"Barlow Condensed",sans-serif;
  --f-body:"DM Sans",sans-serif;
  --max:1180px;
  --gut:clamp(18px,5vw,78px);
}
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{font-family:var(--f-body);background:var(--c-black);color:var(--c-text);overflow-x:hidden}
a{text-decoration:none;color:inherit}
.container{max-width:var(--max);margin:auto;padding-inline:var(--gut)}
.label{font-size:11px;font-weight:800;letter-spacing:.16em;text-transform:uppercase;color:var(--c-orange)}
.h1,.h2{font-family:var(--f-display);text-transform:uppercase;letter-spacing:-.025em;color:#fff}
.h1{font-size:clamp(2.4rem,5vw,4.5rem);line-height:.94;font-weight:700}
.h2{font-size:clamp(1.8rem,3vw,2.7rem);line-height:.98;font-weight:700}
.btn{display:inline-flex;align-items:center;justify-content:center;padding:14px 28px;border-radius:999px;font-size:12px;font-weight:800;letter-spacing:.12em;text-transform:uppercase;white-space:nowrap}
.btn-primary{background:linear-gradient(135deg,var(--c-orange),var(--c-orange2));color:#fff}
.site-header{position:fixed;top:0;left:0;right:0;z-index:1000;padding:16px 0;background:rgba(5,5,5,.96);backdrop-filter:blur(18px);border-bottom:1px solid rgba(255,255,255,.08)}
.header-inner{min-height:62px;display:flex;align-items:center;justify-content:space-between;gap:24px}
.logo-img{height:58px;width:auto;max-width:250px;object-fit:contain}
.main-nav{display:flex;align-items:center;gap:34px}
.nav-link{font-family:var(--f-display);font-size:15px;font-weight:800;letter-spacing:.08em;text-transform:uppercase;color:rgba(255,255,255,.74)}
.nav-link:hover{color:var(--c-orange)}
.header-actions{display:flex;align-items:center;gap:14px}
.burger{display:none;flex-direction:column;gap:5px;padding:8px;background:transparent;border:0}
.burger span{display:block;width:26px;height:2px;background:#fff}
.legal-page{padding-top:150px;padding-bottom:80px;background:radial-gradient(circle at 70% 10%,rgba(255,59,31,.16),transparent 30%),var(--c-black)}
.legal-head{max-width:840px;margin-bottom:44px}
.legal-head .h1{margin-top:16px}
.legal-head p{margin-top:18px;color:var(--c-muted);line-height:1.7}
.legal-card{border-radius:30px;border:1px solid var(--c-border);background:linear-gradient(145deg,rgba(255,255,255,.07),rgba(255,255,255,.02));padding:clamp(24px,4vw,42px)}
.legal-block{padding:26px 0;border-bottom:1px solid var(--c-border)}
.legal-block:last-child{border-bottom:0}
.legal-block h2{font-family:var(--f-display);font-size:1.7rem;text-transform:uppercase;margin-bottom:12px}
.legal-block p,.legal-block li{color:var(--c-muted);line-height:1.75;font-size:.96rem}
.legal-block ul{padding-left:18px}
.site-footer{padding:40px 0 24px;background:#070707;border-top:1px solid var(--c-border)}
.footer-inner{display:flex;justify-content:space-between;gap:28px;flex-wrap:wrap}
.footer-logo img{height:66px}
.footer-text{margin-top:12px;max-width:350px;color:var(--c-muted);line-height:1.7;font-size:.9rem}
.footer-links{display:flex;gap:18px;flex-wrap:wrap;color:var(--c-muted);font-size:.9rem}
.footer-bottom{margin-top:30px;padding-top:18px;border-top:1px solid var(--c-border);color:var(--c-muted);font-size:.82rem}
@media(max-width:960px){.main-nav,.header-actions{display:none}.burger{display:flex}.logo-img{height:44px}}

/* ==========================================================
   FOOTER MINIMAL PRESTIGE CUSTOM
========================================================== */

.site-footer{
  padding:46px 0 26px !important;
  background:#050505 !important;
  border-top:1px solid rgba(255,255,255,.10) !important;
}

.footer-minimal{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap:26px;
}

.footer-logo img{
  height:72px !important;
  width:auto !important;
  object-fit:contain !important;
}

.footer-contact{
  display:flex;
  justify-content:center;
  gap:clamp(34px,7vw,90px);
  flex-wrap:wrap;
}

.footer-contact div{
  display:flex;
  flex-direction:column;
  gap:7px;
  min-width:220px;
}

.footer-contact strong{
  font-family:var(--f-display);
  font-size:1.15rem;
  text-transform:uppercase;
  letter-spacing:.06em;
  color:#fff;
}

.footer-contact a,
.footer-contact span{
  color:var(--c-muted);
  font-size:.92rem;
  line-height:1.6;
}

.footer-contact a:hover{
  color:var(--c-orange);
}

.footer-legal{
  display:flex;
  justify-content:center;
  gap:18px;
  flex-wrap:wrap;
  padding-top:4px;
}

.footer-legal a{
  color:var(--c-muted);
  font-size:.82rem;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.footer-legal a:hover{
  color:var(--c-orange);
}

.footer-copy{
  width:100%;
  padding-top:22px;
  border-top:1px solid rgba(255,255,255,.08);
  color:rgba(255,255,255,.45);
  font-size:.8rem;
}

@media(max-width:620px){
  .footer-logo img{
    height:58px !important;
  }

  .footer-contact{
    gap:24px;
  }

  .footer-contact div{
    min-width:100%;
  }
}

/* ==========================================================
   CONTACT FORM 7 — FINAL PRESTIGE CUSTOM
========================================================== */

.contact-card .wpcf7,
.contact-card .wpcf7 form{
  width:100%;
}

.contact-card .wpcf7 .form-grid{
  display:grid !important;
  grid-template-columns:1fr 1fr !important;
  gap:14px !important;
  margin-top:0 !important;
}

.contact-card .wpcf7 p{
  margin:0 !important;
  display:contents !important;
}

.contact-card .wpcf7-form-control-wrap{
  display:block !important;
  width:100% !important;
}

.contact-card .wpcf7 .form-full{
  grid-column:1 / -1 !important;
  width:100% !important;
}

.contact-card .wpcf7 input,
.contact-card .wpcf7 select,
.contact-card .wpcf7 textarea{
  width:100% !important;
  border-radius:16px !important;
  border:1px solid var(--c-border2) !important;
  background:rgba(255,255,255,.05) !important;
  color:#fff !important;
  outline:none !important;
  box-shadow:none !important;
  font-family:var(--f-body) !important;
  font-size:.95rem !important;
}

.contact-card .wpcf7 input,
.contact-card .wpcf7 select{
  height:56px !important;
  padding:0 16px !important;
}

/* SELECT — RESTAURE LES FLÈCHES NATIVES */
.contact-card .wpcf7 select{
  appearance:menulist !important;
  -webkit-appearance:menulist !important;
  -moz-appearance:menulist !important;
  padding-right:38px !important;
  cursor:pointer !important;
  background-image:auto !important;
}

.contact-card .wpcf7 select::-ms-expand{
  display:block !important;
}

.contact-card .wpcf7 textarea{
  height:180px !important;
  min-height:180px !important;
  padding:16px !important;
  resize:none !important;
}

.contact-card .wpcf7 input::placeholder,
.contact-card .wpcf7 textarea::placeholder{
  color:rgba(255,255,255,.38) !important;
}

.contact-card .wpcf7 input[type="submit"]{
  width:auto !important;
  height:auto !important;
  margin-top:18px !important;
  padding:14px 28px !important;
  border:0 !important;
  border-radius:999px !important;
  background:linear-gradient(
    135deg,
    var(--c-orange),
    var(--c-orange2)
  ) !important;
  color:#fff !important;
  box-shadow:0 14px 45px rgba(255,59,31,.24) !important;
  font-size:12px !important;
  font-weight:800 !important;
  letter-spacing:.12em !important;
  text-transform:uppercase !important;
  cursor:pointer !important;
}

.contact-card .wpcf7 input[type="submit"]:hover{
  transform:translateY(-2px);
  box-shadow:0 20px 60px rgba(255,59,31,.32) !important;
}

.contact-card .wpcf7-spinner{
  display:none !important;
}

.contact-card .wpcf7-response-output{
  margin:18px 0 0 !important;
  padding:14px 16px !important;
  border-radius:16px !important;
  border:1px solid rgba(255,59,31,.35) !important;
  background:rgba(255,59,31,.10) !important;
  color:#fff !important;
  font-size:.92rem !important;
  line-height:1.55 !important;
}

/* MOBILE */
@media(max-width:620px){

  .contact-card .wpcf7 .form-grid{
    grid-template-columns:1fr !important;
  }

  .contact-card .wpcf7 .form-full{
    grid-column:1 !important;
  }

  .contact-card .wpcf7 input[type="submit"]{
    width:100% !important;
  }
}
/* SELECT ARROW POSITION FIX */
.contact-card .wpcf7 select.form-control{
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.7)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='7 10 12 15 17 10'/%3E%3C/svg%3E") !important;

  background-repeat: no-repeat !important;

  /* légèrement à gauche du bord */
  background-position: right 16px center !important;

  background-size: 16px !important;

  /* espace pour la flèche */
  padding-right: 48px !important;
}
/* Empêche le zoom automatique iPhone dans les champs */
.rdv-page input,
.rdv-page select,
.rdv-page textarea,
.contact-card input,
.contact-card select,
.contact-card textarea{
  font-size:16px !important;
}


/* ===== RDV TOAST SUCCESS ===== */

.rdv-toast{
  position:fixed;
  top:95px;
  right:22px;
  z-index:999999;

  width:390px;
  max-width:calc(100vw - 30px);

  display:flex;
  align-items:flex-start;
  gap:14px;

  padding:18px;
  border-radius:22px;

  background:rgba(15,20,18,.92);
  border:1px solid rgba(34,197,94,.25);

  backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px);

  box-shadow:
    0 20px 60px rgba(0,0,0,.35),
    0 0 0 1px rgba(255,255,255,.04) inset;

  overflow:hidden;
  animation:toastIn .45s cubic-bezier(.22,.61,.36,1);
}

.rdv-toast::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  bottom:0;
  width:4px;
  background:linear-gradient(
    180deg,
    #22c55e,
    #16a34a
  );
}

.toast-icon{
  width:44px;
  height:44px;
  min-width:44px;
  border-radius:50%;

  display:flex;
  align-items:center;
  justify-content:center;

  background:linear-gradient(
    135deg,
    #22c55e,
    #16a34a
  );

  color:#fff;
  font-size:18px;
  font-weight:900;

  box-shadow:
    0 14px 35px rgba(34,197,94,.25);
}

.toast-content{
  display:flex;
  flex-direction:column;
  gap:4px;
}

.toast-content strong{
  color:#fff;
  font-size:15px;
  font-weight:800;
}

.toast-content span{
  color:rgba(255,255,255,.7);
  font-size:13px;
  line-height:1.5;
}

.toast-close{
  margin-left:auto;
  width:28px;
  height:28px;
  border:none;
  border-radius:50%;
  cursor:pointer;

  background:rgba(255,255,255,.06);
  color:rgba(255,255,255,.6);

  font-size:20px;
}

.toast-close:hover{
  background:rgba(255,255,255,.12);
  color:#fff;
}

@keyframes toastIn{
  from{
    opacity:0;
    transform:translateY(-12px) translateX(20px);
  }
  to{
    opacity:1;
    transform:none;
  }
}

@media(max-width:768px){

  .rdv-toast{
    top:84px;
    left:14px;
    right:14px;
    width:auto;
    max-width:none;
    border-radius:18px;
  }
}

/* RDV DATE + HEURE — CLEAN */
.rdv-page .rdv-time-grid{
  width:100% !important;
  max-width:100% !important;
  grid-template-columns:1fr 1fr !important;
  gap:14px !important;
}

.rdv-page .rdv-time-grid > *{
  min-width:0 !important;
  max-width:100% !important;
  box-sizing:border-box !important;
}

.rdv-page .rdv-time-grid input[type="date"],
.rdv-page .rdv-time-grid select[name="heure_souhaitee"]{
  width:100% !important;
  max-width:100% !important;
  min-width:0 !important;
  height:72px !important;
  min-height:72px !important;
  border-radius:26px !important;
  padding:0 24px !important;
  margin:0 !important;
  font-size:16px !important;
  color:#fff !important;
  background:rgba(255,255,255,.05) !important;
  border:1px solid var(--c-border2) !important;
  box-sizing:border-box !important;
  font-family:inherit !important;
}

.rdv-page .rdv-time-grid input[type="date"]{
  -webkit-appearance:none !important;
  appearance:none !important;
  text-align:left !important;
  line-height:72px !important;
}

.rdv-page .rdv-time-grid input[type="date"]::-webkit-date-and-time-value{
  text-align:left !important;
  display:flex !important;
  align-items:center !important;
  justify-content:flex-start !important;
  width:100% !important;
  height:72px !important;
  padding:0 !important;
  margin:0 !important;
}

.rdv-page .rdv-time-grid input[type="date"]::-webkit-calendar-picker-indicator{
  opacity:1 !important;
  cursor:pointer !important;
  filter:invert(1) brightness(2) !important;
}

@media(max-width:620px){
  .rdv-page .rdv-time-grid{
    grid-template-columns:1fr !important;
  }
}
/* ===== FIX SELECT SAFARI / CHROME RDV ===== */

.rdv-page select,
.rdv-page select.form-control{
    -webkit-appearance: none !important;
    appearance: none !important;
    -moz-appearance: none !important;

    width: 100% !important;
    height: 58px !important;

    border: 1px solid rgba(255,255,255,.12) !important;
    border-radius: 18px !important;

    background:
      linear-gradient(
        180deg,
        rgba(255,255,255,.05) 0%,
        rgba(255,255,255,.02) 100%
      ) !important;

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    color: #fff !important;
    font-size: 16px !important;
    font-weight: 600 !important;

    padding: 0 52px 0 20px !important;
    outline: none !important;
    box-shadow: none !important;

    /* flèche custom */
    background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") !important;

    background-repeat: no-repeat !important;
    background-position: right 18px center !important;
    background-size: 14px !important;
}

/* focus propre */
.rdv-page select:focus{
    border-color: rgba(255,100,40,.45) !important;
    box-shadow: 0 0 0 2px rgba(255,100,40,.12) !important;
}

/* menu déroulant */
.rdv-page select option{
    background: #171717 !important;
    color: #ffffff !important;
}