/* ═══════════════════════════════════════════
   CROWN BARBER — Barbier de Prestige  |  style.css
   ═══════════════════════════════════════════ */

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

:root {
  --black:     #050505;
  --deep:      #020202;
  --surface:   #0c0c0c;
  --surface2:  #111;
  --border:    rgba(255,255,255,0.08);
  --white:     #f5f2ed;
  --muted:     #b0aca3;
  --faint:     #6e6b65;
  --gold:      #c8a46a;
  --gold-pale: #e4d0a0;
  --ff-d:      'Fraunces', Georgia, serif;
  --ff-b:      'Plus Jakarta Sans', system-ui, sans-serif;
  --ease-out:  cubic-bezier(0.16,1,0.3,1);
}

html { scroll-behavior:smooth; font-size:16px; }
body { background:var(--black); color:var(--white); font-family:var(--ff-b); overflow-x:hidden; -webkit-font-smoothing:antialiased; }
a { text-decoration:none; color:inherit; }
ul { list-style:none; }

/* ─── CURSOR ───────────────────────────────── */
#cursor-dot {
  position:fixed; z-index:9999; top:0; left:0;
  width:7px; height:7px; background:var(--gold);
  border-radius:50%; pointer-events:none;
  will-change:transform; mix-blend-mode:screen;
}
#cursor-ring {
  position:fixed; z-index:9998; top:0; left:0;
  width:30px; height:30px;
  border:1px solid rgba(200,164,106,0.45); border-radius:50%;
  pointer-events:none; will-change:transform;
  transition:width .25s var(--ease-out), height .25s var(--ease-out);
}
body:has(a:hover) #cursor-ring,
body:has(button:hover) #cursor-ring { width:48px; height:48px; border-color:rgba(200,164,106,0.2); }
@media (pointer:coarse) { #cursor-dot,#cursor-ring { display:none; } }


/* ─── PRELOADER — Outline Luxe ─────────────── */
#preloader {
  position:fixed; inset:0; z-index:9000;
  background:#000;
  display:flex; flex-direction:column;
  align-items:center; justify-content:center;
  overflow:hidden;
  transition:opacity 1.4s ease;
}
#preloader.fade-out { opacity:0; pointer-events:none; }

/* Preloader — logo image */
.pre-logo-wrap {
  position: absolute; top: 6vh; left: 50%; transform: translateX(-50%);
  z-index: 2;
  animation: preLogoIn 2s var(--ease-out) 0.1s both;
}
.pre-logo-img {
  width: min(220px, 46vw);
  height: auto;
  display: block;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  -webkit-user-drag: none;
  user-select: none;
}
@keyframes preLogoIn {
  from { opacity: 0; transform: translateX(-50%) scale(0.94); }
  to   { opacity: 1; transform: translateX(-50%) scale(1); }
}


/* Chair container — fixed size, never clips */
.pre-chair-wrap {
  position:relative;
  width:min(260px, 52vw);
  height:min(370px, 68vh);
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
}

/* SVG chair — draw-on stroke animation */
.pre-chair {
  width:100%; height:100%;
  overflow:visible;
  filter:drop-shadow(0 50px 80px rgba(0,0,0,0.95));
  /* Float after draw completes (~2.5s) */
  animation:chairFloat 5s ease-in-out infinite 2.8s;
}
@keyframes chairFloat {
  0%,100% { transform:translateY(0); }
  50%      { transform:translateY(-9px); }
}

/* Fill shapes — fade in after strokes */
.cf {
  animation:fillIn .6s ease 2.3s both;
}
@keyframes fillIn { from{opacity:0} to{opacity:1} }

/* Stroke group — single dasharray draw-on */
.cs {
  stroke-dasharray: 1800;
  stroke-dashoffset: 1800;
  animation: drawOn 2s cubic-bezier(0.4,0,0.2,1) .6s forwards;
}
@keyframes drawOn { to { stroke-dashoffset: 0; } }

/* Ground glow */
.pre-ground {
  position:absolute; bottom:-4px; left:50%; transform:translateX(-50%);
  width:55%; height:12px;
  background:radial-gradient(ellipse, rgba(200,164,106,0.09) 0%, transparent 70%);
  filter:blur(6px);
  animation:fillIn .8s ease 2.5s both;
}

/* Bottom status */
.pre-bottom {
  position:absolute; bottom:9vh; left:50%; transform:translateX(-50%);
  text-align:center; display:flex; flex-direction:column;
  align-items:center; gap:16px; pointer-events:none; white-space:nowrap;
}
.pre-status-wrap { position:relative; height:26px; }
#pre-status {
  display:block; font-family:var(--ff-b); font-size:9px; font-weight:300;
  letter-spacing:6px; text-transform:uppercase; color:rgba(200,164,106,0.55);
  transition:opacity .6s ease, transform .6s ease;
}
#pre-status.hide { opacity:0; transform:translateY(-6px); }
#pre-ready {
  display:block; position:absolute; top:2px; left:50%;
  font-family:var(--ff-d); font-size:clamp(16px,2.5vw,24px);
  font-weight:300; font-style:italic; letter-spacing:1.5px;
  color:var(--white); opacity:0;
  transform:translateX(-50%) translateY(6px);
  transition:opacity 1s ease, transform 1s ease; white-space:nowrap;
}
#pre-ready.show { opacity:1; transform:translateX(-50%) translateY(0); }
.pre-bar { width:160px; height:1px; background:rgba(255,255,255,0.07); }
.pre-bar-fill {
  height:100%; width:0%;
  background:linear-gradient(90deg,transparent,var(--gold),rgba(255,240,190,0.85));
  box-shadow:0 0 6px rgba(200,164,106,0.45);
  transition:width .1s linear;
}


/* ─── SITE ──────────────────────────────────── */
#site { opacity:0; transition:opacity 1.2s ease; }
#site.visible { opacity:1; }


/* ─── NAV ───────────────────────────────────── */
#nav {
  position:fixed; top:0; left:0; right:0; z-index:500;
  padding:28px 56px; display:flex; align-items:center; gap:48px;
  transition:background .4s ease, padding .4s ease;
}
#nav.scrolled {
  background:rgba(2,2,2,0.93);
  backdrop-filter:blur(18px); -webkit-backdrop-filter:blur(18px);
  padding:18px 56px; border-bottom:1px solid var(--border);
}
/* Navbar — logo */
.nav-brand { display:flex; align-items:center; margin-right:auto; }
.nav-logo-link { display:block; line-height:0; text-decoration:none; }
.nav-logo {
  height: 44px;
  width: auto;
  display: block;
  image-rendering: -webkit-optimize-contrast;
  -webkit-user-drag: none;
  transition: filter .4s ease, transform .4s ease;
  /* Rend le PNG net sur Retina sans recadrage */
  object-fit: contain;
}
.nav-logo:hover {
  filter: drop-shadow(0 0 14px rgba(200,164,106,0.45)) brightness(1.06);
  transform: scale(1.02);
}
.nav-links { display:flex; gap:40px; }
.nav-links a { font-size:8.5px; letter-spacing:3.5px; text-transform:uppercase; color:var(--muted); font-weight:400; transition:color .3s; }
.nav-links a:hover { color:var(--white); }
.nav-resa { font-size:8px; letter-spacing:3px; text-transform:uppercase; color:var(--gold); border:1px solid rgba(200,164,106,.35); padding:10px 22px; font-weight:300; transition:all .35s ease; white-space:nowrap; }
.nav-resa:hover { background:var(--gold); color:#000; border-color:var(--gold); }
.nav-burger { display:none; flex-direction:column; gap:6px; background:none; border:none; cursor:pointer; padding:4px; margin-left:auto; }
.nav-burger span { display:block; width:24px; height:1px; background:var(--white); transition:transform .3s, opacity .3s; }
.nav-burger.open span:first-child { transform:translateY(3.5px) rotate(45deg); }
.nav-burger.open span:last-child  { transform:translateY(-3.5px) rotate(-45deg); }
.mobile-menu { position:fixed; inset:0; z-index:490; background:rgba(0,0,0,.97); display:flex; align-items:center; justify-content:center; opacity:0; pointer-events:none; transition:opacity .4s; }
.mobile-menu.open { opacity:1; pointer-events:all; }
.mobile-menu ul { text-align:center; display:flex; flex-direction:column; gap:36px; }
.mobile-menu a { font-family:var(--ff-d); font-size:clamp(28px,6vw,42px); font-weight:300; color:var(--white); transition:color .3s; }
.mobile-menu a:hover { color:var(--gold); }
.mobile-resa { font-family:var(--ff-b) !important; font-size:clamp(11px,2vw,13px) !important; letter-spacing:5px; text-transform:uppercase; color:var(--gold) !important; border:1px solid rgba(200,164,106,.4); padding:15px 36px; display:inline-block; margin-top:8px; }


/* ─── HERO ──────────────────────────────────── */
#hero {
  min-height:100vh; min-height:100dvh;
  display:flex; align-items:center; justify-content:center;
  position:relative; overflow:hidden;
  background:var(--deep);
}

/* Hero background — photo salon */
.hero-static-bg {
  position:absolute; inset:0; z-index:0;
  background-image: url('/assets/images/salon.jpg');
  background-size: cover;
  background-position: center 55%;
  filter: brightness(.38) saturate(.75);
  transform: scale(1.04);
}
/* Sur mobile : repositionner vers le haut */
@media (max-width: 768px) {
  .hero-static-bg {
    background-position: center 20%;
  }
}
/* Overlay premium par-dessus la photo */
.hero-static-bg::after {
  content:'';
  position:absolute; inset:0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.35) 0%, rgba(0,0,0,.1) 35%, rgba(0,0,0,.55) 70%, rgba(5,5,5,.95) 100%),
    radial-gradient(ellipse 80% 90% at 50% 50%, transparent 40%, rgba(0,0,0,.55) 100%);
}


.hero-content {
  position:relative; z-index:2;
  text-align:center; padding:0 32px; max-width:860px;
}
.hero-eyebrow { font-size:9px; letter-spacing:7px; text-transform:uppercase; color:var(--gold); font-weight:300; margin-bottom:36px; }
.hero-title { font-family:var(--ff-d); font-size:clamp(28px,4.5vw,56px); font-weight:300; line-height:1.08; color:var(--white); letter-spacing:1px; margin-bottom:28px; text-shadow:0 2px 40px rgba(0,0,0,0.6); }
.hero-title em { font-style:italic; color:var(--gold-pale); }
.hero-tagline { font-size:10px; letter-spacing:5px; text-transform:uppercase; color:rgba(245,242,237,0.88); font-weight:300; margin-bottom:56px; }
.hero-actions { display:flex; gap:20px; justify-content:center; flex-wrap:wrap; }
.btn-gold { display:inline-flex; align-items:center; font-size:9px; letter-spacing:4px; text-transform:uppercase; font-weight:400; font-family:var(--ff-b); background:var(--gold); color:#000; padding:18px 48px; transition:letter-spacing .35s ease; position:relative; overflow:hidden; }
.btn-gold::after { content:''; position:absolute; inset:0; background:rgba(255,255,255,.14); transform:translateX(-105%); transition:transform .4s var(--ease-out); }
.btn-gold:hover::after { transform:translateX(0); }
.btn-gold:hover { letter-spacing:5px; }
.btn-ghost { display:inline-flex; align-items:center; font-size:9px; letter-spacing:4px; text-transform:uppercase; font-weight:400; font-family:var(--ff-b); color:var(--white); border:1px solid rgba(255,255,255,.45); padding:18px 48px; backdrop-filter:blur(4px); transition:border-color .35s; }
.btn-ghost:hover { border-color:rgba(255,255,255,.75); }
.hero-scroll { position:absolute; bottom:44px; left:50%; transform:translateX(-50%); display:flex; flex-direction:column; align-items:center; gap:10px; z-index:2; }
.scroll-line { display:block; width:1px; height:52px; background:linear-gradient(to bottom,var(--gold),transparent); animation:scrollBlink 2.2s ease-in-out infinite; }
@keyframes scrollBlink { 0%,100%{opacity:.25;transform:scaleY(1)} 50%{opacity:1;transform:scaleY(.65)} }
.scroll-label { font-size:7px; letter-spacing:4px; text-transform:uppercase; color:rgba(245,242,237,0.3); }


/* ─── CONTAINER ─────────────────────────────── */
.container { max-width:1180px; margin:0 auto; padding:0 56px; }

/* ─── SHARED TYPOGRAPHY ─────────────────────── */
.section-tag { font-size:8px; letter-spacing:6px; text-transform:uppercase; color:var(--gold); font-weight:300; margin-bottom:22px; display:flex; align-items:center; gap:18px; }
.section-tag::before { content:''; width:36px; height:1px; background:var(--gold); opacity:.45; flex-shrink:0; }
.section-tag.center { justify-content:center; }
.section-tag.center::before { display:none; }
.section-title { font-family:var(--ff-d); font-size:clamp(32px,4vw,54px); font-weight:400; line-height:1.18; color:var(--white); }
.section-title em { font-style:italic; color:var(--gold-pale); }
.section-title.center { text-align:center; }
.section-body { font-size:13px; line-height:2.0; color:var(--muted); font-weight:300; }

/* ─── REVEAL ────────────────────────────────── */
.reveal { opacity:0; transform:translateY(36px); transition:opacity .9s var(--ease-out) var(--delay,0s), transform .9s var(--ease-out) var(--delay,0s); }
.reveal.in-view { opacity:1; transform:translateY(0); }

/* ─── MAISON ────────────────────────────────── */
#maison { padding:160px 0; background:var(--surface); }
.maison-grid { display:grid; grid-template-columns:1fr .85fr; gap:110px; align-items:center; }
.maison-left .section-title { margin-bottom:28px; }
.section-body { margin-bottom:52px; }
.maison-stats { display:grid; grid-template-columns:repeat(3,1fr); border-top:1px solid var(--border); }
.stat { display:flex; flex-direction:column; gap:8px; padding:28px 0; border-right:1px solid var(--border); }
.stat:last-child { border-right:none; }
.stat:not(:first-child) { padding-left:28px; }
.stat-n { font-family:var(--ff-d); font-size:38px; font-weight:300; color:var(--gold); line-height:1; }
.stat-n sup { font-size:18px; }
.stat-l { font-size:8px; letter-spacing:2.5px; text-transform:uppercase; color:var(--faint); font-weight:300; }
.maison-card { aspect-ratio:4/5; background:var(--surface2); border:1px solid var(--border); display:flex; align-items:flex-end; position:relative; overflow:hidden; }
.maison-card::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse 90% 60% at 30% 75%,rgba(200,164,106,.06) 0%,transparent 65%); }
.maison-card-inner { position:relative; z-index:1; padding:44px; border-left:1px solid rgba(200,164,106,.25); margin:0 0 44px 44px; }
.maison-card-ornament { font-size:22px; color:rgba(200,164,106,.2); margin-bottom:20px; }
blockquote { font-family:var(--ff-d); font-size:clamp(18px,2.2vw,26px); font-weight:400; font-style:italic; line-height:1.55; color:rgba(245,242,237,.88); margin-bottom:18px; }
cite { display:block; font-style:normal; font-size:8px; letter-spacing:4px; text-transform:uppercase; color:var(--muted); font-weight:400; }

/* ─── SERVICES ──────────────────────────────── */
#services { padding:160px 0; background:var(--deep); }
.services-header { margin-bottom:80px; }
.services-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:2px; }
.service-card { background:var(--surface2); padding:56px 44px; position:relative; overflow:hidden; transition:background .45s; }
.service-card::before { content:''; position:absolute; top:0; left:0; right:0; height:1px; background:linear-gradient(90deg,transparent,var(--gold),transparent); transform:scaleX(0); transform-origin:center; transition:transform .5s var(--ease-out); }
.service-card:hover { background:#141414; }
.service-card:hover::before { transform:scaleX(1); }
.service-num { position:absolute; top:28px; right:32px; font-family:var(--ff-d); font-size:72px; font-weight:300; color:rgba(200,164,106,.055); line-height:1; transition:color .45s; pointer-events:none; }
.service-card:hover .service-num { color:rgba(200,164,106,.1); }
.service-ico { width:44px; height:44px; color:rgba(200,164,106,.45); margin-bottom:30px; transition:color .4s; }
.service-card:hover .service-ico { color:rgba(200,164,106,.7); }
.service-name { font-family:var(--ff-d); font-size:clamp(22px,2vw,28px); font-weight:300; color:var(--white); margin-bottom:14px; }
.service-desc { font-size:13px; line-height:1.9; color:var(--muted); font-weight:300; margin-bottom:36px; }
.service-price-row { display:flex; flex-direction:column; gap:4px; border-top:1px solid var(--border); padding-top:24px; }
.service-from { font-size:7.5px; letter-spacing:3.5px; text-transform:uppercase; color:var(--faint); }
.service-price { font-family:var(--ff-d); font-size:40px; font-weight:300; color:var(--gold); line-height:1; }

/* ─── GALERIE ───────────────────────────────── */
#galerie { padding:160px 0 0; background:var(--surface); overflow:hidden; }
.galerie-header { margin-bottom:72px; }
.galerie-grid { display:grid; grid-template-columns:1.8fr 1fr 1fr; gap:3px; }
.galerie-large { grid-row:1/3; }
.galerie-cell { position:relative; overflow:hidden; background:#0a0a0a; aspect-ratio:16/9; }
.galerie-large { aspect-ratio:auto; }
.galerie-bg { position:absolute; inset:0; transition:transform .7s var(--ease-out); }
.galerie-cell:hover .galerie-bg { transform:scale(1.04); }
.gb-1 {
  background-image: url('/assets/images/galerie-1.jpg');
  background-size: cover;
  background-position: center;
  background-color: #0a0a0a;
}
.gb-2 {
  background-image: url('/assets/images/galerie-2.jpg');
  background-size: cover;
  background-position: center;
  background-color: #0a0a0a;
}
.gb-3 { background:linear-gradient(145deg,#141418 0%,#080810 100%); }
.gb-4 { background:linear-gradient(145deg,#181210 0%,#0a0806 100%); }
.gb-5 { background:linear-gradient(145deg,#131513 0%,#080a08 100%); }
.galerie-hover { position:absolute; inset:0; background:linear-gradient(to top,rgba(0,0,0,.7) 0%,transparent 55%); display:flex; flex-direction:column; justify-content:flex-end; padding:28px; opacity:0; transition:opacity .45s; }
.galerie-cell:hover .galerie-hover { opacity:1; }
.gh-tag { font-size:7.5px; letter-spacing:4px; text-transform:uppercase; color:var(--gold); margin-bottom:6px; transform:translateY(8px); transition:transform .4s var(--ease-out); }
.gh-title { font-family:var(--ff-d); font-size:22px; font-weight:300; color:var(--white); font-style:italic; transform:translateY(8px); transition:transform .45s var(--ease-out) .04s; }
.galerie-cell:hover .gh-tag,.galerie-cell:hover .gh-title { transform:translateY(0); }

/* ─── EXPÉRIENCE ────────────────────────────── */
#experience { padding:160px 0; background:var(--surface); }
.exp-header { margin-bottom:80px; }
.exp-header .section-title { max-width:480px; }
.exp-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:3px; }
.exp-pillar { background:var(--surface2); padding:52px 36px; position:relative; transition:background .4s; }
.exp-pillar:hover { background:#141414; }
.ep-num { display:block; font-family:var(--ff-d); font-size:11px; color:var(--gold); letter-spacing:2px; opacity:.5; margin-bottom:44px; }
.ep-title { font-family:var(--ff-d); font-size:clamp(24px,2vw,30px); font-weight:300; color:var(--white); margin-bottom:18px; }
.ep-text { font-size:13px; line-height:1.9; color:var(--muted); font-weight:300; }
.ep-line { position:absolute; bottom:0; left:0; right:0; height:2px; background:linear-gradient(90deg,var(--gold),transparent); transform:scaleX(0); transform-origin:left; transition:transform .5s var(--ease-out); }
.exp-pillar:hover .ep-line { transform:scaleX(1); }

/* ─── RÉSERVATION ───────────────────────────── */
#reservation { padding:180px 0; background:var(--deep); text-align:center; position:relative; overflow:hidden; }
.resa-glow { position:absolute; inset:0; background:radial-gradient(ellipse 80% 70% at 50% 50%,rgba(200,164,106,.038) 0%,transparent 70%); pointer-events:none; }
.resa-inner { position:relative; z-index:1; }
.resa-title { font-family:var(--ff-d); font-size:clamp(44px,7.5vw,84px); font-weight:300; color:var(--white); line-height:1.1; margin-bottom:22px; }
.resa-title em { font-style:italic; color:var(--gold-pale); display:block; }
.resa-sub { font-size:11px; letter-spacing:3.5px; text-transform:uppercase; color:var(--muted); font-weight:300; margin-bottom:60px; }
.resa-btn { display:inline-flex; align-items:center; gap:16px; font-family:var(--ff-b); font-size:9.5px; letter-spacing:5px; text-transform:uppercase; font-weight:400; background:var(--gold); color:#000; padding:22px 60px; transition:all .4s var(--ease-out); position:relative; overflow:hidden; }
.resa-btn::before { content:''; position:absolute; inset:0; background:rgba(255,255,255,.16); transform:translateX(-105%); transition:transform .4s var(--ease-out); }
.resa-btn:hover::before { transform:translateX(0); }
.resa-btn:hover { padding-right:72px; }
.resa-btn svg { flex-shrink:0; transition:transform .35s; }
.resa-btn:hover svg { transform:translateX(5px); }
.resa-infos { display:flex; justify-content:center; align-items:center; margin-top:60px; flex-wrap:wrap; gap:0; }
.resa-info-item { display:flex; flex-direction:column; gap:8px; padding:0 52px; }
.resa-divider { width:1px; height:48px; background:var(--border); flex-shrink:0; }
.ri-label { font-size:7.5px; letter-spacing:4px; text-transform:uppercase; color:var(--faint); }
.ri-val { font-family:var(--ff-d); font-size:17px; font-weight:300; color:var(--white); }
.ri-val sup { font-size:10px; }

/* ─── FOOTER ────────────────────────────────── */
footer { background:#000; padding:52px 56px; display:flex; align-items:center; justify-content:space-between; border-top:1px solid var(--border); flex-wrap:wrap; gap:20px; }
.footer-brand-old { display:flex; justify-content:center; } /* ancienne règle désactivée */
.footer-logo-link { display:block; line-height:0; }
.footer-logo {
  width: 200px;
  height: auto;
  display: block;
  image-rendering: -webkit-optimize-contrast;
  -webkit-user-drag: none;
  opacity: .82;
  transition: opacity .35s ease, filter .35s ease;
}
.footer-logo:hover {
  opacity: 1;
  filter: drop-shadow(0 0 12px rgba(200,164,106,0.35));
}
.footer-copy { font-size:8px; letter-spacing:2.5px; color:rgba(255,255,255,.14); }
.footer-links { display:flex; gap:28px; }
.footer-links a { font-size:8px; letter-spacing:3px; text-transform:uppercase; color:rgba(255,255,255,.2); transition:color .3s; }
.footer-links a:hover { color:var(--gold); }

/* ─── NAV — LIEN REJOIGNEZ-NOUS ─────────────── */
.nav-link-join { color: rgba(200,164,106,.65) !important; }
.nav-link-join:hover { color: var(--gold) !important; }

/* ─── RECRUTEMENT CTA (homepage) ────────────── */
#recrutement {
  padding: 120px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.rcta-wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 60px;
}
.rcta-left { flex: 1; max-width: 560px; }
.rcta-title {
  font-family: var(--ff-d); font-size: clamp(28px,3.5vw,46px);
  font-weight: 300; color: var(--white); line-height: 1.12;
  letter-spacing: 2px; margin: 14px 0 22px;
}
.rcta-title em { font-style: italic; color: var(--gold-pale); }
.rcta-body {
  font-size: 13px; line-height: 2; color: var(--muted);
  font-weight: 300; max-width: 480px;
}
.rcta-right {
  display: flex; flex-direction: column; align-items: flex-end;
  gap: 28px; flex-shrink: 0;
}
.rcta-note {
  font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(200,164,106,.4); font-weight: 300; text-align: right;
  line-height: 1.8;
}
.rcta-btn {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--ff-b); font-size: 9px; letter-spacing: 5px;
  text-transform: uppercase; font-weight: 400; text-decoration: none;
  background: var(--gold); color: #000; padding: 20px 52px;
  transition: all .4s var(--ease-out); position: relative; overflow: hidden;
}
.rcta-btn::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,.15); transform: translateX(-105%);
  transition: transform .4s var(--ease-out);
}
.rcta-btn:hover::before { transform: translateX(0); }
.rcta-btn:hover { padding-right: 64px; }
.rcta-btn svg { transition: transform .3s; }
.rcta-btn:hover svg { transform: translateX(4px); }

/* ─── RESPONSIVE ────────────────────────────── */
@media (max-width:1024px) {
  .maison-grid { grid-template-columns:1fr; gap:60px; }
  .maison-right { display:none; }
  .exp-grid { grid-template-columns:1fr 1fr; }
}
@media (max-width:860px) {
  #nav { padding:22px 24px; }
  #nav.scrolled { padding:16px 24px; }
  .nav-links,.nav-resa { display:none; }
  .nav-burger { display:flex; }
  .nav-logo { height: 36px; }
  .container { padding:0 24px; }
  #maison,#services,#experience,#reservation,#recrutement { padding:100px 0; }
  .rcta-wrap { flex-direction: column; align-items: flex-start; gap:36px; }
  .rcta-right { align-items: flex-start; }
  .rcta-note { text-align: left; }
  #galerie { padding:100px 0 0; }
  .services-grid { grid-template-columns:1fr; }
  .service-card { padding:44px 28px; }
  .galerie-grid { grid-template-columns:1fr; }
  .galerie-large { grid-row:auto; }
  .galerie-cell { aspect-ratio:16/9; }
  .exp-grid { grid-template-columns:1fr; gap:2px; }
  .resa-infos { flex-direction:column; gap:28px; }
  .resa-divider { display:none; }
  .resa-info-item { padding:0; }
  footer { flex-direction:column; align-items:center; text-align:center; padding:40px 24px; }
  /* Preloader mobile */
  .pre-chair-wrap { width:min(200px,60vw); height:min(290px,58vh); }
  /* Recrutement mobile */
  .rf-grid-4 { grid-template-columns:1fr 1fr; gap:20px; }
  .rf-grid-2 { grid-template-columns:1fr; gap:28px; }
  .rf-poste-grid { grid-template-columns:1fr; gap:10px; }
  .rf-poste-inner { padding:24px 22px; flex-direction:row; align-items:center; gap:18px; }
  .rf-poste-num { font-size:32px; }
  .rf-poste-name { font-size:15px; }
  .rf-upload { padding:40px 24px; }
}
@media (max-width:480px) {
  .maison-stats { grid-template-columns:1fr; }
  .stat { border-right:none; border-bottom:1px solid var(--border); padding-left:0 !important; }
  .stat:last-child { border-bottom:none; }
  .hero-title { font-size:36px; }
  .rf-grid-4 { grid-template-columns:1fr; }
  .rf-submit { padding:20px 40px; font-size:8.5px; letter-spacing:4px; }
}
@media (prefers-reduced-motion:reduce) {
  *,*::before,*::after { animation-duration:.01ms !important; transition-duration:.01ms !important; }
}

/* ════ TARIFS — CARTE RESTAURANT LUXE ════════════════════ */
.tarif-carte {
  max-width: 680px;
  margin: 0 auto;
  padding: 40px 48px;
  border: 1px solid rgba(201,169,110,.14);
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.tarif-carte-label {
  font-size: 8px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: rgba(201,169,110,.4);
  text-align: center;
  margin-bottom: 28px;
  font-family: var(--ff-body);
}
.tarif-list { display: flex; flex-direction: column; }
.tarif-row {
  display: flex;
  align-items: baseline;
  gap: 0;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.045);
}
.tarif-row:last-child { border-bottom: none; }
.tarif-info {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.tarif-nom {
  font-family: var(--ff-display);
  font-size: 16px;
  color: rgba(255,255,255,.86);
  font-weight: 300;
  line-height: 1;
  white-space: nowrap;
}
.tarif-sub {
  font-size: 9px;
  color: rgba(255,255,255,.28);
  font-style: italic;
  letter-spacing: .3px;
}
/* Pointillés dorés */
.tarif-dots {
  flex: 1;
  border-bottom: 1px dotted rgba(201,169,110,.25);
  margin: 0 14px;
  margin-bottom: 6px;
  min-width: 20px;
}
.tarif-prix {
  font-family: var(--ff-display);
  font-size: 20px;
  color: var(--gold);
  font-weight: 300;
  flex-shrink: 0;
  line-height: 1;
  white-space: nowrap;
}

@media (max-width: 600px) {
  .tarif-carte { padding: 24px 20px; }
  .tarif-nom { font-size: 14px; }
  .tarif-prix { font-size: 17px; }
}

/* ════ PLANITY CTA ══════════════════════════════════════ */
.planity-cta {
  text-align: center;
  margin-top: 52px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.planity-text {
  font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
  color: rgba(255,255,255,.35); font-family: var(--ff-body); font-weight: 300;
}
.planity-btn {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid rgba(201,169,110,.45); color: var(--gold);
  padding: 16px 40px; font-size: 9.5px; letter-spacing: 4px;
  text-transform: uppercase; text-decoration: none; font-family: var(--ff-body);
  transition: all .35s ease;
}
.planity-btn:hover {
  background: var(--gold); color: #000;
  box-shadow: 0 0 20px rgba(201,169,110,.15);
}

/* Horaires sur 3 lignes */
.ri-val-hours {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ri-val-hours span {
  display: block;
  font-size: inherit;
  color: inherit;
}

/* ════ NEWSLETTER ════════════════════════════════════════ */
.nl-section {
  padding: 80px 0;
  text-align: center;
  position: relative;
}
.nl-line-top, .nl-line-bot {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,169,110,.2), transparent);
  margin: 0 56px;
}
.nl-inner { padding: 64px 32px; max-width: 560px; margin: 0 auto; }
.nl-title {
  font-family: var(--ff-display);
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 300; color: #fff; margin-bottom: 12px;
}
.nl-title em { font-style: italic; color: var(--gold2); }
.nl-sub {
  font-size: 13px; color: rgba(255,255,255,.38);
  line-height: 1.8; margin-bottom: 32px; font-family: var(--ff-display);
}
.nl-form {
  display: flex; gap: 0; max-width: 400px; margin: 0 auto 14px;
  border: 1px solid rgba(201,169,110,.3);
}
.nl-input {
  flex: 1; background: transparent; border: none;
  color: #fff; font-size: 13px; padding: 13px 16px;
  outline: none; font-family: var(--ff-body); min-width: 0;
}
.nl-input::placeholder { color: rgba(255,255,255,.25); }
.nl-btn {
  background: var(--gold); color: #000; border: none;
  padding: 13px 20px; font-size: 8px; letter-spacing: 3px;
  text-transform: uppercase; font-family: var(--ff-body);
  font-weight: 700; cursor: pointer; flex-shrink: 0;
  transition: background .2s;
}
.nl-btn:hover { background: var(--gold2); }
.nl-confirm {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; padding: 14px 0;
}
.nl-confirm-icon { font-size: 20px; color: var(--gold); }
.nl-confirm-text {
  font-family: var(--ff-display); font-style: italic;
  font-size: 15px; color: rgba(201,169,110,.8);
}
.nl-legal {
  font-size: 9px; letter-spacing: 1px; color: rgba(255,255,255,.2);
  margin-top: 2px;
}

@media (max-width: 480px) {
  .nl-form { flex-direction: column; }
  .nl-btn { padding: 13px; }
  .nl-line-top, .nl-line-bot { margin: 0 24px; }
}

/* ════ FOOTER SOCIAL V1 ══════════════════════════════════ */
footer {
  text-align: center;
  padding-top: 0;
}
.footer-social {
  padding: 40px 32px 32px;
  border-top: 1px solid rgba(201,169,110,.12);
}
.footer-social-label {
  font-size: 8px; letter-spacing: 5px; text-transform: uppercase;
  color: rgba(201,169,110,.4); margin-bottom: 20px;
}
.footer-social-icons {
  display: flex; justify-content: center; gap: 20px;
}
.footer-social-link {
  display: flex; flex-direction: column; align-items: center;
  gap: 8px; text-decoration: none; transition: transform .2s ease;
}
.footer-social-link:hover { transform: translateY(-3px); }
.social-icon-wrap {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  transition: box-shadow .2s;
}
/* Instagram gradient officiel */
.social-ig {
  background: linear-gradient(145deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  box-shadow: 0 4px 16px rgba(220,39,67,.25);
}
.social-ig:hover { box-shadow: 0 6px 24px rgba(220,39,67,.4); }
/* TikTok noir */
.social-tt {
  background: #010101;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 4px 16px rgba(0,0,0,.35);
}
.social-tt:hover { box-shadow: 0 6px 24px rgba(0,0,0,.5); border-color: rgba(255,255,255,.25); }

.social-label {
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,.35); font-family: var(--ff-body);
}

/* Logo + adresse — centré en colonne */
.footer-brand {
  padding: 28px 0 20px;
  border-top: 1px solid rgba(255,255,255,.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
}
.footer-logo-link {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-address {
  font-size: 11px; color: rgba(255,255,255,.3);
  letter-spacing: 2px; text-align: center;
}

/* Copyright */
.footer-copy {
  font-size: 9px; color: rgba(255,255,255,.15);
  letter-spacing: 1px; padding: 14px 24px 8px;
}
.footer-links {
  padding: 0 24px 24px;
  display: flex; justify-content: center; gap: 20px;
}
.footer-links a {
  font-size: 9px; color: rgba(255,255,255,.2); letter-spacing: 1px;
  text-decoration: none; transition: color .2s;
}
.footer-links a:hover { color: rgba(201,169,110,.6); }

@media (max-width: 480px) {
  .footer-social { padding: 32px 20px 24px; }
  .footer-brand  { margin: 0 20px; }
}

/* ════ NEWSLETTER 05 — ÉPURÉ LUXE ═══════════════════════ */
.nl-section   { padding: 0; text-align: center; }
.nl-line-top, .nl-line-bot {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,169,110,.2), transparent);
  margin: 0;
}
.nl-inner     { padding: 72px 48px; }
.nl-tag       { margin-bottom: 28px; display: block; }
.nl-form-05   { max-width: 320px; margin: 0 auto 18px; display: flex; flex-direction: column; align-items: center; gap: 22px; }
.nl-input-05  {
  width: 100%; background: transparent; border: none;
  border-bottom: 1px solid rgba(255,255,255,.15);
  color: #fff; font-size: 18px; padding: 10px 0;
  text-align: center; font-family: var(--ff-display);
  letter-spacing: 1px; outline: none;
  transition: border-color .3s;
}
.nl-input-05:focus { border-bottom-color: rgba(201,169,110,.5); }
.nl-input-05::placeholder { color: rgba(255,255,255,.25); }
.nl-btn-05 {
  background: none; border: none;
  color: rgba(201,169,110,.7); font-size: 9px;
  letter-spacing: 5px; text-transform: uppercase;
  cursor: pointer; font-family: var(--ff-body); padding: 0;
  transition: color .2s;
}
.nl-btn-05:hover { color: var(--gold2); }
.nl-confirm-05 {
  font-family: var(--ff-display); font-style: italic;
  font-size: 14px; color: rgba(201,169,110,.7);
  padding: 8px 0;
}
.nl-legal {
  font-size: 9px; letter-spacing: 1px;
  color: rgba(255,255,255,.2); margin-top: 4px;
}

@media (max-width: 480px) {
  .nl-inner { padding: 52px 28px; }
}
