/* ═══════════════════════════════════════════
   SPICY BEAUTY BY T. — style.css
═══════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  --hv:         'Helvetica Neue', Helvetica, Arial, sans-serif;
  --sc:         'Pacifico', cursive;
  --rose:       #ffd3fa;
  --rose-pale:  #ffe8fd;
  --rose-ultra: #fff5fe;
  --rose-dark:  #cc90c6;
  --noir:       #0C0909;
  --g900:       #1E1A1A;
  --g600:       #7A7070;
  --g200:       #E8E3DF;
  --g100:       #F2EFEC;
  --creme:      #F9F7F4;
  --blanc:      #FFFFFF;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; overflow-x: hidden; }
body  {
  font-family: var(--hv);
  background: var(--blanc);
  color: var(--noir);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img   { display: block; max-width: 100%; }
a     { text-decoration: none; color: inherit; }
button { background: none; border: none; cursor: pointer; font: inherit; }


/* ═══════════════════════════════════════════
   NAV PILL
═══════════════════════════════════════════ */
.nav-wrap {
  position: fixed;
  top: 20px; left: 50%; transform: translateX(-50%);
  z-index: 600;
  display: flex; align-items: center; gap: 10px;
  white-space: nowrap;
}

.nav-logo-btn {
  width: 58px; height: 58px; border-radius: 50%;
  overflow: hidden;
  background: rgba(255,255,255,.75);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.45);
  box-shadow: 0 2px 18px rgba(0,0,0,.1);
  flex-shrink: 0;
  transition: box-shadow .3s;
}
.nav-logo-btn:hover { box-shadow: 0 4px 24px rgba(200,112,154,.25); }
.nav-logo-btn img { width: 100%; height: 100%; object-fit: cover; }

.nav-pill {
  display: flex; align-items: center; gap: 2px;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 999px;
  padding: 8px;
  box-shadow: 0 2px 18px rgba(0,0,0,.08);
  transition: box-shadow .3s;
}
.nav-pill.scrolled { box-shadow: 0 6px 32px rgba(0,0,0,.13); }

.nav-pill a {
  display: block; padding: 10px 18px;
  font-family: var(--hv); font-size: .88rem; font-weight: 400;
  letter-spacing: .03em; color: var(--g900); border-radius: 999px;
  transition: background .2s, color .2s;
}
.nav-pill a:hover { background: rgba(255,211,250,.18); color: #9a5596; }

.nav-pill-cta {
  margin-left: 4px; padding: 11px 24px;
  background: var(--noir); color: var(--blanc);
  border-radius: 999px; font-family: var(--hv);
  font-size: .88rem; font-weight: 500; letter-spacing: .04em;
  transition: background .25s;
}
.nav-pill-cta:hover { background: #9a5596; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 6px;
  width: 58px; height: 58px; border-radius: 50%;
  background: rgba(255,255,255,.88); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.5);
  box-shadow: 0 2px 18px rgba(0,0,0,.1);
  align-items: center; justify-content: center;
}
.hamburger span { width: 18px; height: 1.5px; background: var(--noir); display: block; transition: all .3s; }

.drawer {
  display: none; position: fixed; inset: 0;
  background: var(--blanc); z-index: 590;
  flex-direction: column; align-items: center; justify-content: center; gap: 28px;
}
.drawer.open { display: flex; }
.drawer a, .drawer button {
  font-family: var(--hv); font-size: 2rem; font-weight: 300;
  color: var(--noir); letter-spacing: -.02em;
}
.drawer a:hover, .drawer button:hover { color: var(--rose-dark); }


/* ═══════════════════════════════════════════
   POPUP CONTACT
═══════════════════════════════════════════ */
.overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(12,9,9,.5); backdrop-filter: blur(10px);
  z-index: 900; align-items: center; justify-content: center;
}
.overlay.active { display: flex; }

.popup {
  background: var(--blanc); width: calc(100% - 32px); max-width: 420px;
  padding: 52px 44px 44px; border-radius: 24px; text-align: center;
  position: relative; animation: popIn .38s cubic-bezier(.22,.68,0,1.38);
}
@keyframes popIn {
  from { opacity: 0; transform: scale(.93) translateY(18px); }
  to   { opacity: 1; transform: scale(1)   translateY(0); }
}
.popup-x { position: absolute; top: 16px; right: 18px; font-size: 1.3rem; color: var(--g600); padding: 4px 8px; transition: color .2s; }
.popup-x:hover { color: var(--noir); }
.popup-tag { font-size: .58rem; letter-spacing: .24em; text-transform: uppercase; color: var(--rose); margin-bottom: 10px; }
.popup-titre { font-size: 1.85rem; font-weight: 300; letter-spacing: -.02em; color: var(--noir); margin-bottom: 8px; }
.popup-note { font-size: .88rem; color: var(--g600); line-height: 1.75; margin-bottom: 26px; }
.popup-tel {
  display: block; font-size: 1.85rem; font-weight: 600;
  color: var(--noir); letter-spacing: -.01em; margin-bottom: 28px;
  transition: color .2s;
}
.popup-tel:hover { color: #9a5596; }
.popup-sep { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.popup-sep::before, .popup-sep::after { content: ''; flex: 1; height: 1px; background: var(--g200); }
.popup-sep span { font-size: .6rem; letter-spacing: .12em; text-transform: uppercase; color: var(--g600); }
.popup-rdv { display: flex; flex-direction: column; gap: 10px; }
.popup-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 20px; border-radius: 14px;
  background: var(--rose); color: #2a0028;
  font-size: .82rem; font-weight: 700; letter-spacing: .04em;
  transition: all .2s; border: none;
}
.popup-btn:hover { background: var(--rose-pale); transform: translateY(-1px); }
.popup-btn svg { width: 16px; height: 16px; flex-shrink: 0; }


/* ═══════════════════════════════════════════
   HERO — Tesla / Apple
═══════════════════════════════════════════ */
.hero {
  height: 100vh; min-height: 640px;
  background: #0D0D0D;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  text-align: center;
}

/* Très subtil halo central */
.hero::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(255,211,250,.03) 0%, transparent 70%);
}

.hero-inner {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; gap: 0;
  padding: 0 24px;
}

/* "Valenciennes · 59300" — très petit, en haut */
.hero-location {
  font-family: var(--hv);
  font-size: .62rem; letter-spacing: .35em; text-transform: uppercase;
  color: rgba(255,255,255,.22); font-weight: 400;
  margin-bottom: 32px;
  opacity: 0; animation: hFade .8s .1s ease forwards;
}

/* Titre principal — grand, fin, Helvetica */
.hero-title {
  font-family: var(--hv);
  font-size: clamp(3rem, 13vw, 11.5rem);
  font-weight: 200;
  letter-spacing: -.04em;
  line-height: .92;
  color: #fff;
  margin-bottom: 44px;
  opacity: 0; animation: hSlideUp 1s .25s cubic-bezier(.16,1,.3,1) forwards;
  word-break: break-word;
  width: 100%;
}

/* Services — en ligne horizontale, séparés par des points */
.hero-services {
  list-style: none;
  display: flex; align-items: center; gap: 20px;
  margin-bottom: 56px;
  opacity: 0; animation: hFade .8s .55s ease forwards;
}
.hero-services li {
  font-family: var(--hv);
  font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.35); font-weight: 300;
}
.hero-services li + li::before {
  content: '·';
  margin-right: 20px;
  color: rgba(255,211,250,.3);
}

/* Boutons */
.hero-actions {
  display: flex; gap: 12px; align-items: center;
  opacity: 0; animation: hFade .8s .7s ease forwards;
}
.hero-btn-primary {
  display: inline-flex; align-items: center;
  padding: 15px 32px;
  background: var(--rose); color: #2a0028;
  border-radius: 999px;
  font-family: var(--hv); font-size: .8rem;
  font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  transition: all .25s;
  box-shadow: 0 0 32px rgba(255,211,250,.12);
}
.hero-btn-primary:hover {
  background: var(--rose-pale); transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255,211,250,.2);
}
.hero-btn-secondary {
  display: inline-flex; align-items: center;
  padding: 15px 32px;
  background: transparent;
  color: rgba(255,255,255,.5);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  font-family: var(--hv); font-size: .8rem;
  font-weight: 400; letter-spacing: .08em; text-transform: uppercase;
  cursor: pointer; transition: all .25s;
}
.hero-btn-secondary:hover {
  border-color: rgba(255,211,250,.35);
  color: var(--rose);
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute; bottom: 44px; left: 50%; transform: translateX(-50%);
  opacity: 0; animation: hFade .8s 1.1s ease forwards;
}
.hsi-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(255,211,250,.4), transparent);
  margin: 0 auto;
  animation: scrollPulse 2.4s 1.1s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%,100% { opacity: .35; transform: scaleY(1) translateY(0); }
  50%     { opacity: .9;  transform: scaleY(1.08) translateY(2px); }
}
@keyframes hFade {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes hSlideUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* ═══════════════════════════════════════════
   TARIFS — Tesla / Apple dark redesign
═══════════════════════════════════════════ */
.tarifs-section {
  background: #111;
  position: relative; overflow: hidden;
}

.tarifs-header {
  padding: 120px 80px 70px;
  max-width: 1400px; margin: 0 auto;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 40px;
}
.tarifs-header-left {}
.tarifs-header-label {
  font-size: .6rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--rose); display: block; margin-bottom: 14px;
}
.tarifs-header-title {
  font-family: var(--hv);
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 300; letter-spacing: -.04em; line-height: 1.06; color: #fff;
}
.tarifs-header-title em { font-style: italic; color: var(--rose); opacity: .85; }

/* ── Toggle iPhone style — version dark ── */
.category-toggle {
  display: inline-flex;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 999px;
  padding: 5px;
  gap: 2px;
  flex-shrink: 0;
}
.toggle-btn {
  padding: 16px 44px;
  border-radius: 999px;
  font-family: var(--hv); font-size: 1rem; font-weight: 400;
  color: rgba(255,255,255,.35); cursor: pointer; border: none;
  background: transparent;
  transition: all .3s cubic-bezier(.25,.46,.45,.94);
  letter-spacing: -.01em;
}
.toggle-btn.active {
  background: rgba(255,255,255,.12);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 2px 16px rgba(0,0,0,.4);
}

/* ── Panneau de tarifs ── */
.tarif-body {
  max-width: 1400px; margin: 0 auto;
  padding: 0 80px 140px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.tarif-panel { display: none; }
.tarif-panel.active { display: contents; }

.tarif-info { position: sticky; top: 120px; }
.tarif-num {
  font-size: .6rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--rose); display: block; margin-bottom: 16px; opacity: .8;
}
.tarif-name {
  font-family: var(--hv);
  font-size: clamp(5rem, 10vw, 10rem);
  font-weight: 300; letter-spacing: -.05em;
  line-height: .9; color: #fff;
  margin-bottom: 28px;
}
.tarif-sub {
  font-size: 1rem; font-weight: 300;
  color: rgba(255,255,255,.38); line-height: 1.8; max-width: 300px;
  margin-bottom: 44px;
}

/* ── CTA rose sur dark ── */
.btn-cta-big {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 20px 44px;
  background: var(--rose);
  color: #2a0028; border-radius: 999px;
  font-family: var(--hv); font-size: 1.05rem; font-weight: 700; letter-spacing: .02em;
  box-shadow: 0 8px 32px rgba(255,211,250,.2);
  transition: all .28s;
}
.btn-cta-big:hover {
  background: var(--rose-pale);
  transform: translateY(-3px);
  box-shadow: 0 16px 44px rgba(255,211,250,.3);
}
.btn-cta-big svg { width: 18px; height: 18px; }

/* Droite : liste des prix */
.tarif-list-wrap { padding-top: 8px; }
.p-list { list-style: none; }
.p-row {
  display: flex; align-items: center;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  gap: 14px;
  transition: padding-left .2s;
}
.p-row:last-child { border-bottom: none; }
.p-row:hover { padding-left: 8px; }

/* Séparateur catégorie Options */
.p-row-sep {
  border-bottom: none !important;
  padding: 22px 0 10px !important;
  pointer-events: none;
}
.p-row-sep:hover { padding-left: 0 !important; }
.p-cat {
  font-size: .6rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--rose); font-weight: 500; opacity: .7;
}
.p-name {
  font-family: var(--hv); font-size: 1.05rem; font-weight: 300;
  color: rgba(255,255,255,.72); line-height: 1.45; flex-shrink: 0;
}
.p-dots {
  flex: 1; height: 1px; min-width: 16px;
  background: repeating-linear-gradient(to right, rgba(255,255,255,.1) 0, rgba(255,255,255,.1) 3px, transparent 3px, transparent 8px);
}
.p-price {
  font-family: var(--hv); font-size: 1.18rem; font-weight: 500;
  color: var(--rose); white-space: nowrap; min-width: 36px; text-align: right;
  flex-shrink: 0;
}


/* ═══════════════════════════════════════════
   LOCALISATION — Tesla / Apple redesign
═══════════════════════════════════════════ */
.loc {
  background: #0D0D0D;
  position: relative; overflow: hidden;
}

/* ── Header centré, typo géante ── */
.loc-hero {
  text-align: center;
  padding: 120px 40px 80px;
  max-width: 1100px; margin: 0 auto;
}
.loc-eyebrow {
  font-size: .58rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--rose); display: block; margin-bottom: 20px;
}
.loc-title-big {
  font-family: var(--hv);
  font-size: clamp(3.2rem, 14vw, 12rem);
  font-weight: 300; letter-spacing: -.05em; line-height: .92;
  color: #fff;
  margin-bottom: 28px;
  text-align: center;
  width: 100%;
  word-break: break-word;
}
.loc-headline {
  font-size: clamp(.82rem, 1.5vw, 1rem);
  font-weight: 300; color: rgba(255,255,255,.35);
  letter-spacing: .02em; line-height: 1.7;
  max-width: 480px; margin: 0 auto;
}

/* ── Apple-style specs bar ── */
.loc-specs {
  display: flex;
  border-top: 1px solid rgba(255,255,255,.07);
  border-bottom: 1px solid rgba(255,255,255,.07);
  max-width: 100%;
}
.loc-spec-item {
  flex: 1;
  padding: 44px 48px;
  border-right: 1px solid rgba(255,255,255,.07);
  display: flex; flex-direction: column; gap: 10px;
  transition: background .3s;
}
.loc-spec-item:last-child { border-right: none; }
.loc-spec-item:hover { background: rgba(255,255,255,.02); }

.ls-label {
  font-size: .6rem; letter-spacing: .24em; text-transform: uppercase;
  color: rgba(255,255,255,.3); font-weight: 400;
}
.ls-value {
  font-size: 1.12rem; font-weight: 300; color: rgba(255,255,255,.85);
  line-height: 1.4;
}
.ls-value a { color: rgba(255,255,255,.85); transition: color .2s; }
.ls-value a:hover { color: var(--rose); }
.ls-value strong { font-weight: 500; color: #fff; }
.ls-sub {
  font-size: .88rem; font-weight: 300;
  color: rgba(255,255,255,.4); line-height: 1.6;
  margin-top: 6px; display: block;
}

/* ── Transports ── */
.loc-transp-bar {
  padding: 40px 80px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  max-width: 100%;
}
.transp-title {
  font-size: .55rem; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(255,255,255,.25); margin-bottom: 18px;
}
.transp-list { display: flex; flex-direction: column; gap: 10px; }
.transp-row {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: .92rem; font-weight: 300;
  color: rgba(255,255,255,.45); line-height: 1.55;
}
.tbadge {
  background: var(--rose); color: #2a0028;
  font-size: .58rem; font-weight: 700; padding: 3px 10px;
  border-radius: 999px; white-space: nowrap; flex-shrink: 0; margin-top: 2px;
}

/* ── CTA bar full-width (Tesla style) ── */
.loc-rdv-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 52px 80px;
  background: linear-gradient(135deg, #1a0d12 0%, #0D0D0D 50%, #1a0d12 100%);
  border-top: 1px solid rgba(200,112,154,.15);
  border-bottom: 1px solid rgba(200,112,154,.15);
  gap: 40px;
}
.loc-rdv-bar-text {}
.loc-rdv-bar-title {
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 300; color: #fff; letter-spacing: -.03em;
  line-height: 1.1; margin-bottom: 10px;
}
.loc-rdv-bar-note {
  font-size: .9rem; font-weight: 300;
  color: rgba(255,255,255,.35); line-height: 1.7;
}
.loc-rdv-bar-note strong { color: rgba(255,255,255,.6); font-weight: 400; }

.rdv-btns { display: flex; gap: 12px; flex-shrink: 0; flex-wrap: wrap; }
.rdv-btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 18px 34px; border-radius: 999px;
  font-family: var(--hv); font-size: .95rem; font-weight: 500; letter-spacing: .02em;
  transition: all .25s; white-space: nowrap;
}
.rdv-btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.rdv-white {
  background: var(--rose); color: #2a0028;
  box-shadow: 0 4px 24px rgba(255,211,250,.2);
  font-weight: 700;
}
.rdv-white:hover { background: var(--rose-pale); transform: translateY(-2px); }
.rdv-outline {
  border: 1px solid rgba(255,255,255,.2); color: rgba(255,255,255,.75);
  background: transparent;
}
.rdv-outline:hover { border-color: var(--rose-pale); color: var(--rose-pale); transform: translateY(-2px); }

/* ── Carte Leaflet full-bleed ── */
.loc-map { height: 520px; position: relative; }
#leaflet-map { width: 100%; height: 100%; }
.leaflet-control-attribution { display: none !important; }
.leaflet-control-zoom { display: none !important; }

.map-tag {
  position: absolute; bottom: 32px; left: 48px;
  background: rgba(13,13,13,.9);
  backdrop-filter: blur(20px);
  padding: 18px 24px; border-radius: 16px;
  border: 1px solid rgba(255,255,255,.08);
  z-index: 1000;
}
.map-tag-name { font-size: 1rem; font-weight: 500; color: #fff; margin-bottom: 4px; }
.map-tag-addr { font-size: .74rem; font-weight: 300; color: rgba(255,255,255,.4); line-height: 1.5; }



/* ═══════════════════════════════════════════
   GALERIE — Tesla / Apple dark redesign
═══════════════════════════════════════════ */
.galerie {
  background: #0D0D0D;
  padding: 0 0 120px;
  position: relative;
}

.gal-header {
  text-align: center;
  padding: 120px 40px 80px;
  max-width: 900px; margin: 0 auto;
}
.gal-eyebrow {
  font-size: .6rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--rose); display: block; margin-bottom: 22px; opacity: .8;
}
.gal-title {
  font-family: var(--hv);
  font-size: clamp(5rem, 12vw, 10rem);
  font-weight: 300; letter-spacing: -.05em; line-height: .9;
  color: #fff;
  margin-bottom: 28px;
}
.gal-title em { font-style: italic; color: var(--rose); opacity: .85; }
.gal-sub {
  font-size: 1rem; font-weight: 300;
  color: rgba(255,255,255,.3); line-height: 1.7;
}

.gal-grid {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr;
  grid-template-rows: 360px 360px;
  gap: 4px;
  max-width: 100%;
}

/* Placement explicite 4 photos */
.gal-item:nth-child(1) { grid-column: 1;   grid-row: 1 / 3; } /* grande gauche */
.gal-item:nth-child(2) { grid-column: 2;   grid-row: 1; }
.gal-item:nth-child(3) { grid-column: 3;   grid-row: 1; }
.gal-item:nth-child(4) { grid-column: 2/4; grid-row: 2; }     /* large bas droite */

.gal-item {
  overflow: hidden; position: relative;
  background: #1a1a1a;
}
.gal-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s cubic-bezier(.25,.46,.45,.94);
  filter: saturate(.9) brightness(.92);
  display: block;
}
.gal-item:hover img { transform: scale(1.06); filter: saturate(1.1) brightness(1); }
.gal-ov {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,13,13,.4), transparent 60%);
  opacity: .5; transition: opacity .35s;
  pointer-events: none;
}
.gal-item:nth-child(1) img { object-position: center center; }
.gal-item:nth-child(2) img,
.gal-item:nth-child(3) img,
.gal-item:nth-child(4) img { object-position: center bottom; }
.gal-ph {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 10px;
  border: 1px dashed rgba(255,211,250,.15);
}
.gal-ph span { font-size: .65rem; letter-spacing: .16em; text-transform: uppercase; color: var(--rose); opacity: .3; }
.gal-note {
  text-align: center; margin-top: 28px; padding: 0 24px;
  font-size: .76rem; font-weight: 300; color: rgba(255,255,255,.2); line-height: 1.7;
}
.gal-note code { background: rgba(255,211,250,.08); color: var(--rose); padding: 2px 7px; border-radius: 6px; font-size: .68rem; }


/* ═══════════════════════════════════════════
   SEO
═══════════════════════════════════════════ */
.seo { padding: 60px 48px; background: #0D0D0D; border-top: 1px solid rgba(255,255,255,.05); }
.seo-inner { max-width: 960px; margin: 0 auto; text-align: center; }
.seo-lbl { font-size: .55rem; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.15); margin-bottom: 16px; }
.seo-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 5px 10px; opacity: .15; }
.stag { font-size: .7rem; font-weight: 300; color: rgba(255,255,255,.6); }
.sdot { color: var(--rose); }
.seo-p { margin-top: 18px; font-size: .73rem; font-weight: 300; color: rgba(255,255,255,.2); line-height: 2; opacity: .5; max-width: 800px; margin-left: auto; margin-right: auto; }


/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer { background: var(--noir); padding: 64px 80px 32px; }
.footer-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1.8fr 1fr 1fr; gap: 60px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.06); margin-bottom: 28px;
}
.f-name { font-family: var(--sc); font-size: 1.25rem; color: var(--blanc); margin-bottom: 12px; }
.f-desc { font-size: .78rem; font-weight: 300; color: rgba(255,255,255,.38); line-height: 1.8; max-width: 250px; margin-bottom: 20px; }
.fsocs { display: flex; gap: 10px; }
.fsoc {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.38); transition: all .22s;
}
.fsoc:hover { border-color: var(--rose); color: var(--rose-pale); background: rgba(200,112,154,.1); }
.fsoc svg { width: 15px; height: 15px; }
.f-col-title { font-size: .56rem; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.24); margin-bottom: 18px; }
.f-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.f-col ul li { font-size: .79rem; font-weight: 300; color: rgba(255,255,255,.4); line-height: 1.55; }
.f-col ul li a:hover { color: var(--rose-pale); }
.f-bottom { text-align: center; font-size: .65rem; font-weight: 300; color: rgba(255,255,255,.18); }


/* ═══════════════════════════════════════════
   ANIMATIONS GLOBALES
═══════════════════════════════════════════ */
.anim-up    { opacity: 0; transform: translateY(32px); transition: opacity .85s ease, transform .85s ease; }
.anim-left  { opacity: 0; transform: translateX(-28px); transition: opacity .85s ease, transform .85s ease; }
.anim-right { opacity: 0; transform: translateX(28px);  transition: opacity .85s ease, transform .85s ease; }
.anim-scale { opacity: 0; transform: scale(.95);         transition: opacity .8s ease,  transform .8s ease; }

.anim-up.vis, .anim-left.vis, .anim-right.vis, .anim-scale.vis {
  opacity: 1; transform: none;
}
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; }
.d5 { transition-delay: .5s; }


/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .tarifs-header { padding: 80px 40px 50px; }
  .tarif-body    { padding: 0 40px 90px; gap: 48px; }
  .loc-specs     { flex-wrap: wrap; }
  .loc-spec-item { flex: 1 1 calc(50% - 1px); min-width: 220px; padding: 36px 40px; }
  .loc-rdv-bar   { padding: 44px 40px; }
  .loc-transp-bar { padding: 40px 40px; }
  .map-tag       { left: 32px; }
  .footer        { padding: 56px 40px 28px; }
}

@media (max-width: 860px) {
  /* Nav */
  .nav-pill { display: none; }
  .hamburger { display: flex; }

  /* Fix prix masqués sur mobile : nom sur une ligne, prix toujours visible */
  .p-row { flex-wrap: wrap; align-items: flex-start; gap: 2px 0; padding: 14px 0; }
  .p-name { flex: 1 1 75%; font-size: .9rem; white-space: normal; }
  .p-dots { display: none; }
  .p-price { font-size: 1rem; flex-shrink: 0; padding-left: 8px; }

  /* Tarifs */
  .tarifs-header { flex-direction: column; align-items: flex-start; padding: 60px 24px 40px; }
  .tarif-body { grid-template-columns: 1fr; padding: 0 24px 72px; gap: 0; }
  .tarif-info { position: relative; top: auto; margin-bottom: 40px; }
  .tarif-name { font-size: clamp(4rem, 14vw, 7rem); }
  .category-toggle { align-self: flex-start; }
  .toggle-btn { padding: 12px 28px; font-size: .9rem; }

  /* Loc */
  .loc-hero { padding: 80px 24px 60px; }
  .loc-specs { flex-direction: column; }
  .loc-spec-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); padding: 28px 24px; }
  .loc-spec-item:last-child { border-bottom: none; }
  .loc-rdv-bar { flex-direction: column; align-items: flex-start; padding: 44px 24px; gap: 28px; }
  .loc-transp-bar { padding: 36px 24px; }
  .loc-map  { height: 360px; }
  .map-tag  { left: 16px; bottom: 16px; }

  /* Galerie */
  .gal-header { padding: 80px 24px 60px; }
  .gal-grid {
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 200px 200px;
  }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer { padding: 48px 24px 28px; }
  .seo { padding: 48px 24px; }
}

/* ═══════════════════════════════════════════
   CAROUSEL MOBILE
═══════════════════════════════════════════ */
.gal-carousel { display: none; position: relative; overflow: hidden; background: #0D0D0D; }

.gal-car-track {
  display: flex;
  transition: transform .55s cubic-bezier(.25,.46,.45,.94);
  will-change: transform;
}
.gal-car-slide {
  min-width: 100%; height: 92vw;
  position: relative; overflow: hidden; flex-shrink: 0;
  background: #0D0D0D;
}
.gal-car-slide img {
  width: 100%; height: 100%; object-fit: contain;
  display: block;
}

/* Boutons chevron Apple/Tesla */
.gal-car-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 20;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(13,13,13,.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.85);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; padding: 0;
  transition: background .2s, border-color .2s;
}
.gal-car-btn svg { width: 18px; height: 18px; }
.gal-car-btn:active { background: rgba(255,211,250,.2); border-color: var(--rose); }
.gal-car-prev { left: 14px; }
.gal-car-next { right: 14px; }

/* Dots indicateurs */
.gal-car-dots {
  position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: 6px; z-index: 20;
}
.gal-car-dot {
  height: 5px; border-radius: 999px;
  background: rgba(255,255,255,.3);
  border: none; padding: 0; cursor: pointer;
  transition: all .35s cubic-bezier(.25,.46,.45,.94);
  width: 5px;
}
.gal-car-dot.active {
  background: var(--rose);
  width: 20px;
}

@media (max-width: 560px) {
  .gal-grid    { display: none; }
  .gal-carousel { display: block; }
  .rdv-btns { flex-direction: column; }
  .rdv-btn { justify-content: center; }
}
