/* =========================================================
   ÉBÈNE BEAUTY STUDIO — Premium Salon Template
   Designed & Created By Primine Zodeougan
   ========================================================= */

:root {
  --noir: #0e0b0a;
  --noir-soft: #1c1816;
  --beige: #f5ecdf;
  --beige-soft: #faf5ec;
  --nude: #e7d5bf;
  --or: #c9a35b;
  --or-clair: #e4c98a;
  --rose: #e8c2c8;
  --rose-soft: #f5e0e4;
  --blanc: #fffaf3;
  --brun: #5c3a2a;
  --texte: #1c1816;
  --texte-mute: #6b5b4d;
  --ombre: 0 20px 60px -20px rgba(14,11,10,.25);
  --ombre-doux: 0 10px 30px -15px rgba(14,11,10,.15);
  --transition: cubic-bezier(.4,0,.2,1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Jost', 'Inter', system-ui, sans-serif;
  color: var(--texte);
  background: var(--blanc);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .3s var(--transition); }
ul { list-style: none; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-weight: 500;
  letter-spacing: -.01em;
  line-height: 1.15;
  color: var(--noir);
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.8rem); }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  text-transform: uppercase; letter-spacing: .3em;
  font-size: .72rem; font-weight: 500; color: var(--or);
  margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--or); }

/* ---------- LOADER ---------- */
#loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--noir);
  display: grid; place-items: center;
  transition: opacity .6s ease, visibility .6s ease;
}
#loader.done { opacity: 0; visibility: hidden; }
.loader-mark {
  font-family: 'Cormorant Garamond', serif;
  color: var(--or); font-size: 2.4rem; letter-spacing: .15em;
  position: relative;
}
.loader-mark::after {
  content: ""; display: block; height: 1px; margin-top: 10px;
  background: linear-gradient(90deg, transparent, var(--or), transparent);
  animation: loaderLine 1.4s ease-in-out infinite;
}
@keyframes loaderLine { 0%,100%{transform: scaleX(.2)} 50%{transform: scaleX(1)} }

/* ---------- HEADER ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 22px 0;
  transition: all .4s var(--transition);
  background: transparent;
}
.site-header.scrolled {
  background: rgba(255,250,243,.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px 0;
  box-shadow: 0 1px 0 rgba(14,11,10,.06);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; letter-spacing: .12em;
  color: var(--noir); font-weight: 600;
}
.logo span { color: var(--or); font-style: italic; }
.site-header:not(.scrolled) .logo,
.site-header:not(.scrolled) .nav-links a { color: var(--blanc); }
.site-header:not(.scrolled) .nav-toggle span { background: var(--blanc); }

.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  font-size: .88rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: .12em;
  position: relative; padding: 8px 0;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px; background: var(--or);
  transition: width .35s var(--transition);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a:hover { color: var(--or); }

.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px;
  background: var(--or); color: var(--noir) !important;
  border-radius: 999px;
  font-size: .8rem !important; letter-spacing: .12em !important;
  transition: all .3s var(--transition);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--noir); color: var(--or) !important; transform: translateY(-2px); }

.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  width: 36px; height: 36px; flex-direction: column;
  justify-content: center; gap: 6px; padding: 0;
}
.nav-toggle span {
  display: block; width: 26px; height: 1.5px; background: var(--noir);
  transition: transform .3s, opacity .3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 960px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; top: 0; right: -100%;
    width: min(360px, 85vw); height: 100vh;
    background: var(--blanc);
    flex-direction: column; align-items: flex-start;
    padding: 100px 36px; gap: 22px;
    box-shadow: -20px 0 60px rgba(0,0,0,.15);
    transition: right .45s var(--transition);
  }
  .nav-links.open { right: 0; }
  .site-header:not(.scrolled) .nav-links a { color: var(--noir); }
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 32px; border-radius: 999px;
  font-size: .82rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .15em;
  cursor: pointer; border: 0;
  transition: all .35s var(--transition);
}
.btn-primary { background: var(--or); color: var(--noir); }
.btn-primary:hover { background: var(--noir); color: var(--or); transform: translateY(-3px); box-shadow: var(--ombre); }
.btn-outline { background: transparent; color: var(--blanc); border: 1px solid var(--blanc); }
.btn-outline:hover { background: var(--blanc); color: var(--noir); }
.btn-dark { background: var(--noir); color: var(--blanc); }
.btn-dark:hover { background: var(--or); color: var(--noir); }

/* ---------- HERO ---------- */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(14,11,10,.55) 0%, rgba(14,11,10,.45) 50%, rgba(14,11,10,.75) 100%),
    url('../images/hero.jpg') center/cover no-repeat;
  color: var(--blanc);
}
.hero-content { max-width: 720px; padding: 140px 0 80px; position: relative; z-index: 2; }
.hero h1 { color: var(--blanc); margin-bottom: 24px; }
.hero h1 em { font-style: italic; color: var(--or-clair); }
.hero-lead { font-size: 1.1rem; opacity: .9; margin-bottom: 36px; max-width: 540px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  font-size: .7rem; letter-spacing: .3em; text-transform: uppercase;
  opacity: .7; z-index: 2;
}
.hero-scroll::after {
  content: ""; display: block; width: 1px; height: 40px;
  background: var(--blanc); margin: 12px auto 0;
  animation: scrollHint 2s ease-in-out infinite;
}
@keyframes scrollHint { 0%,100%{transform: scaleY(.4); opacity:.4} 50%{transform: scaleY(1); opacity:1} }

/* Page banner (inner pages) */
.page-banner {
  padding: 180px 0 90px;
  background: linear-gradient(180deg, rgba(14,11,10,.7), rgba(14,11,10,.85)),
    url('../images/about.jpg') center/cover;
  color: var(--blanc); text-align: center;
}
.page-banner h1 { color: var(--blanc); }
.breadcrumb { font-size: .8rem; letter-spacing: .2em; text-transform: uppercase; opacity: .8; margin-top: 14px; }
.breadcrumb a { color: var(--or-clair); }

/* ---------- SECTIONS ---------- */
section { padding: 100px 0; }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 60px; }
.section-head p { color: var(--texte-mute); margin-top: 14px; }

/* Services grid */
.services { background: var(--beige-soft); }
.services-grid {
  display: grid; gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.service-card {
  background: var(--blanc); border-radius: 18px; overflow: hidden;
  box-shadow: var(--ombre-doux);
  transition: transform .5s var(--transition), box-shadow .5s var(--transition);
  position: relative;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--ombre); }
.service-img { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--transition); }
.service-card:hover .service-img img { transform: scale(1.08); }
.service-body { padding: 28px 26px 32px; }
.service-body h3 { margin-bottom: 10px; }
.service-body p { color: var(--texte-mute); font-size: .95rem; }
.service-meta {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 20px; padding-top: 18px; border-top: 1px solid rgba(0,0,0,.06);
  font-size: .85rem;
}
.service-meta .price { color: var(--or); font-weight: 700; letter-spacing: .04em; }

/* Gallery */
.gallery-grid {
  display: grid; gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.gallery-grid.large { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 18px; }
.gallery-item {
  position: relative; overflow: hidden; border-radius: 14px;
  aspect-ratio: 4/5; cursor: zoom-in;
  background: var(--noir);
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s var(--transition), opacity .5s;
}
.gallery-item::after {
  content: "\f00e"; font-family: "Font Awesome 6 Free"; font-weight: 900;
  position: absolute; inset: 0; display: grid; place-items: center;
  color: var(--blanc); font-size: 1.4rem;
  opacity: 0; transition: opacity .4s, backdrop-filter .4s;
  background: rgba(14,11,10,.35);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover::after { opacity: 1; }

/* Testimonials */
.testimonials { background: var(--noir); color: var(--blanc); }
.testimonials h2 { color: var(--blanc); }
.testimonials .section-head p { color: rgba(255,250,243,.7); }
.testi-grid {
  display: grid; gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.testi-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px; padding: 32px;
  backdrop-filter: blur(10px);
  transition: transform .4s, border-color .4s;
}
.testi-card:hover { transform: translateY(-6px); border-color: var(--or); }
.testi-stars { color: var(--or); margin-bottom: 14px; letter-spacing: 2px; }
.testi-card blockquote { font-style: italic; font-size: 1rem; opacity: .92; margin-bottom: 22px; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--or); color: var(--noir);
  display: grid; place-items: center; font-weight: 700;
  font-family: 'Cormorant Garamond', serif; font-size: 1.2rem;
}
.testi-info strong { display: block; }
.testi-info small { opacity: .6; }

/* Stats */
.stats { background: var(--beige); padding: 80px 0; }
.stats-grid {
  display: grid; gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  text-align: center;
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 5vw, 4rem);
  color: var(--or); font-weight: 600; line-height: 1;
}
.stat-label {
  text-transform: uppercase; letter-spacing: .2em;
  font-size: .8rem; color: var(--texte-mute); margin-top: 10px;
}

/* Before / After */
.beforeafter { background: var(--blanc); }
.ba-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 900px; margin: 0 auto; }
.ba-item { position: relative; border-radius: 18px; overflow: hidden; aspect-ratio: 4/5; }
.ba-item img { width: 100%; height: 100%; object-fit: cover; }
.ba-item span {
  position: absolute; top: 18px; left: 18px;
  background: var(--noir); color: var(--blanc);
  padding: 8px 16px; border-radius: 999px;
  font-size: .72rem; letter-spacing: .25em; text-transform: uppercase;
}

/* About */
.about-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.about-img { border-radius: 20px; overflow: hidden; aspect-ratio: 4/5; }
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-text p { color: var(--texte-mute); margin-bottom: 18px; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 28px; }
.about-feature { display: flex; gap: 14px; align-items: flex-start; }
.about-feature i { color: var(--or); font-size: 1.3rem; margin-top: 3px; }
.about-feature h4 { font-size: 1rem; font-family: 'Jost', sans-serif; margin-bottom: 4px; color: var(--noir); }
.about-feature p { font-size: .88rem; margin: 0; }

@media (max-width: 860px) {
  .about-split { grid-template-columns: 1fr; gap: 36px; }
}

/* Team */
.team-grid {
  display: grid; gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.team-card { text-align: center; }
.team-photo { position: relative; border-radius: 18px; overflow: hidden; aspect-ratio: 4/5; margin-bottom: 18px; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--transition); }
.team-card:hover .team-photo img { transform: scale(1.06); }
.team-social {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(0deg, rgba(14,11,10,.85), transparent);
  padding: 30px 0 18px; display: flex; justify-content: center; gap: 16px;
  transform: translateY(100%); transition: transform .4s var(--transition);
}
.team-card:hover .team-social { transform: translateY(0); }
.team-social a { color: var(--blanc); font-size: 1rem; }
.team-social a:hover { color: var(--or); }
.team-card h3 { font-size: 1.3rem; margin-bottom: 4px; }
.team-card .role { color: var(--or); font-size: .82rem; letter-spacing: .2em; text-transform: uppercase; }

/* Pricing */
.pricing { background: var(--beige-soft); }
.pricing-grid {
  display: grid; gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.pricing-card {
  background: var(--blanc); border-radius: 20px; padding: 40px 32px;
  box-shadow: var(--ombre-doux); position: relative;
  transition: transform .4s, box-shadow .4s;
}
.pricing-card:hover { transform: translateY(-8px); box-shadow: var(--ombre); }
.pricing-card.featured {
  background: var(--noir); color: var(--blanc);
}
.pricing-card.featured h3, .pricing-card.featured .price-tag { color: var(--blanc); }
.pricing-card.featured .price-tag em { color: var(--or-clair); }
.pricing-card.featured .badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--or); color: var(--noir);
  padding: 6px 16px; border-radius: 999px;
  font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 700;
}
.pricing-card h3 { margin-bottom: 8px; }
.pricing-card .sub { color: var(--texte-mute); font-size: .9rem; margin-bottom: 24px; }
.pricing-card.featured .sub { color: rgba(255,250,243,.6); }
.price-tag { font-family: 'Cormorant Garamond', serif; font-size: 3rem; color: var(--or); line-height: 1; margin-bottom: 28px; }
.price-tag em { font-size: 1rem; font-style: normal; color: var(--texte-mute); letter-spacing: .1em; }
.pricing-features { margin-bottom: 30px; }
.pricing-features li { padding: 10px 0; border-bottom: 1px solid rgba(0,0,0,.06); display: flex; align-items: center; gap: 12px; font-size: .92rem; }
.pricing-card.featured .pricing-features li { border-color: rgba(255,255,255,.1); }
.pricing-features i { color: var(--or); font-size: .85rem; }

/* Tarifs table */
.price-table {
  width: 100%; border-collapse: collapse;
  background: var(--blanc); border-radius: 16px; overflow: hidden;
  box-shadow: var(--ombre-doux);
}
.price-table th, .price-table td { padding: 18px 22px; text-align: left; }
.price-table th { background: var(--noir); color: var(--or); font-weight: 500; letter-spacing: .15em; text-transform: uppercase; font-size: .8rem; }
.price-table tr:nth-child(even) { background: var(--beige-soft); }
.price-table td:last-child { color: var(--or); font-weight: 700; text-align: right; }

/* Blog */
.blog-grid {
  display: grid; gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.blog-card {
  background: var(--blanc); border-radius: 18px; overflow: hidden;
  box-shadow: var(--ombre-doux);
  transition: transform .4s, box-shadow .4s;
  display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--ombre); }
.blog-img { aspect-ratio: 16/10; overflow: hidden; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.blog-card:hover .blog-img img { transform: scale(1.08); }
.blog-body { padding: 26px; flex: 1; display: flex; flex-direction: column; }
.blog-meta { display: flex; gap: 14px; align-items: center; font-size: .78rem; color: var(--texte-mute); margin-bottom: 12px; text-transform: uppercase; letter-spacing: .15em; }
.blog-meta .cat { background: var(--or); color: var(--noir); padding: 4px 12px; border-radius: 999px; font-weight: 600; }
.blog-body h3 { margin-bottom: 12px; font-size: 1.4rem; }
.blog-body p { color: var(--texte-mute); font-size: .92rem; margin-bottom: 20px; flex: 1; }
.read-more {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--noir); font-weight: 600; font-size: .82rem;
  letter-spacing: .15em; text-transform: uppercase;
  align-self: flex-start;
}
.read-more i { transition: transform .3s; }
.read-more:hover { color: var(--or); }
.read-more:hover i { transform: translateX(4px); }

/* Article page */
.article-body { max-width: 780px; margin: 0 auto; padding: 80px 0; }
.article-body p { font-size: 1.08rem; line-height: 1.85; color: var(--texte); margin-bottom: 24px; }
.article-body h2 { margin: 40px 0 20px; }
.article-body h3 { margin: 30px 0 14px; }
.article-body blockquote {
  border-left: 3px solid var(--or);
  padding: 18px 26px; margin: 30px 0;
  background: var(--beige-soft);
  font-style: italic; color: var(--brun);
  border-radius: 0 12px 12px 0;
}
.article-body ul.list { margin: 20px 0 24px 24px; }
.article-body ul.list li { padding: 6px 0; list-style: disc; color: var(--texte); }
.article-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 60px; padding: 80px 0; }
.sidebar { position: sticky; top: 100px; align-self: start; }
.sidebar-block { background: var(--beige-soft); padding: 26px; border-radius: 16px; margin-bottom: 24px; }
.sidebar-block h4 { font-family: 'Jost', sans-serif; font-size: 1rem; text-transform: uppercase; letter-spacing: .15em; margin-bottom: 16px; color: var(--noir); }
.sidebar-block ul li { padding: 8px 0; border-bottom: 1px solid rgba(0,0,0,.06); }
.sidebar-block ul li:last-child { border: 0; }
.sidebar-block a:hover { color: var(--or); }
@media(max-width: 860px) { .article-layout { grid-template-columns: 1fr; } .sidebar { position: static; } }

.comments { padding: 60px 0; background: var(--beige-soft); }
.comment {
  background: var(--blanc); padding: 24px; border-radius: 14px;
  margin-bottom: 16px; box-shadow: var(--ombre-doux);
}
.comment-head { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.comment-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--or); color: var(--noir); display: grid; place-items: center; font-weight: 700; }
.comment-meta small { color: var(--texte-mute); font-size: .78rem; }

/* FAQ */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--blanc); border-radius: 14px;
  margin-bottom: 12px; box-shadow: var(--ombre-doux);
  overflow: hidden;
}
.faq-q {
  width: 100%; background: none; border: 0; cursor: pointer;
  padding: 22px 26px; text-align: left;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  font-family: 'Jost', sans-serif;
  font-size: 1rem; font-weight: 500; color: var(--noir);
}
.faq-q i { color: var(--or); transition: transform .3s; }
.faq-item.open .faq-q i { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .4s var(--transition);
  padding: 0 26px;
  color: var(--texte-mute);
}
.faq-item.open .faq-a { max-height: 300px; padding: 0 26px 22px; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
@media(max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info-list li {
  display: flex; gap: 18px; padding: 18px 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.contact-info-list i {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--beige-soft); color: var(--or);
  display: grid; place-items: center; flex-shrink: 0;
}
.contact-info-list strong { display: block; margin-bottom: 2px; }
.contact-info-list span { color: var(--texte-mute); font-size: .95rem; }

.contact-form { background: var(--beige-soft); padding: 36px; border-radius: 20px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: .78rem; letter-spacing: .15em; text-transform: uppercase; margin-bottom: 8px; color: var(--noir); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 14px 18px;
  background: var(--blanc); border: 1px solid transparent;
  border-radius: 10px; font: inherit; color: var(--texte);
  transition: border-color .3s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: 0; border-color: var(--or); }
.form-group textarea { min-height: 130px; resize: vertical; }

.map-wrap { border-radius: 20px; overflow: hidden; margin-top: 60px; box-shadow: var(--ombre); }
.map-wrap iframe { width: 100%; height: 420px; border: 0; display: block; }

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--noir) 0%, var(--brun) 100%);
  color: var(--blanc); padding: 80px 0; text-align: center;
}
.cta-band h2 { color: var(--blanc); margin-bottom: 16px; }
.cta-band p { opacity: .85; max-width: 600px; margin: 0 auto 30px; }

/* Footer */
.site-footer { background: var(--noir); color: rgba(255,250,243,.7); padding: 80px 0 30px; }
.footer-grid {
  display: grid; gap: 40px;
  grid-template-columns: 1.5fr 1fr 1fr 1.4fr;
  margin-bottom: 50px;
}
@media(max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-col h4 {
  color: var(--or); font-family: 'Jost', sans-serif; font-size: .85rem;
  letter-spacing: .25em; text-transform: uppercase; margin-bottom: 20px;
}
.footer-col p, .footer-col li { font-size: .92rem; margin-bottom: 10px; }
.footer-col a:hover { color: var(--or); }
.socials { display: flex; gap: 14px; margin-top: 18px; }
.socials a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.06); color: var(--blanc);
  display: grid; place-items: center;
  transition: all .3s;
}
.socials a:hover { background: var(--or); color: var(--noir); transform: translateY(-3px); }
.newsletter { display: flex; gap: 8px; margin-top: 16px; }
.newsletter input {
  flex: 1; padding: 12px 16px; border-radius: 999px;
  background: rgba(255,255,255,.06); border: 0; color: var(--blanc); font: inherit;
}
.newsletter input::placeholder { color: rgba(255,255,255,.4); }
.newsletter button {
  padding: 12px 18px; border-radius: 999px; border: 0;
  background: var(--or); color: var(--noir); cursor: pointer;
  font-weight: 600;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 26px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: .82rem;
}
.footer-bottom .designer { color: var(--or); font-style: italic; }

/* Floating WhatsApp + back-to-top */
.float-wa, .back-top {
  position: fixed; z-index: 90;
  width: 54px; height: 54px; border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: var(--ombre);
  transition: transform .3s, opacity .3s;
}
.float-wa { right: 24px; bottom: 24px; background: #25d366; color: #fff; font-size: 1.5rem; animation: pulseWa 2.4s infinite; }
.float-wa:hover { transform: scale(1.1); color: #fff; }
@keyframes pulseWa { 0%,100% { box-shadow: 0 0 0 0 rgba(37,211,102,.5);} 50%{ box-shadow: 0 0 0 16px rgba(37,211,102,0);} }
.back-top { right: 24px; bottom: 90px; background: var(--noir); color: var(--or); opacity: 0; pointer-events: none; }
.back-top.show { opacity: 1; pointer-events: auto; }
.back-top:hover { background: var(--or); color: var(--noir); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 9998;
  background: rgba(14,11,10,.95);
  display: none; align-items: center; justify-content: center;
  padding: 30px;
}
.lightbox.open { display: flex; animation: fadeIn .3s ease; }
.lightbox img { max-width: 92%; max-height: 90vh; border-radius: 10px; box-shadow: 0 30px 80px rgba(0,0,0,.5); }
.lightbox .lb-close, .lightbox .lb-prev, .lightbox .lb-next {
  position: absolute; background: rgba(255,255,255,.08); color: #fff;
  border: 0; width: 50px; height: 50px; border-radius: 50%;
  display: grid; place-items: center; cursor: pointer; font-size: 1.2rem;
  transition: background .3s;
}
.lightbox button:hover { background: var(--or); color: var(--noir); }
.lb-close { top: 20px; right: 20px; }
.lb-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 20px; top: 50%; transform: translateY(-50%); }
@keyframes fadeIn { from{opacity:0} to{opacity:1} }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s var(--transition), transform .8s var(--transition); }
.reveal.in { opacity: 1; transform: none; }

/* 404 */
.page-404 {
  min-height: 100vh; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--noir), var(--brun)); color: var(--blanc); text-align: center; padding: 80px 20px;
}
.page-404 h1 { font-size: clamp(6rem, 18vw, 12rem); color: var(--or); line-height: 1; }
.page-404 h2 { color: var(--blanc); margin: 10px 0 20px; }
.page-404 p { opacity: .8; margin-bottom: 30px; max-width: 500px; }

/* Utilities */
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
.divider { width: 60px; height: 2px; background: var(--or); margin: 24px auto; }
