/* ============================================
   CHIRURGIE BARBER · Nîmes
   Stylesheet principal
   ============================================ */

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: #0a0a0a;
  color: #f0f0f0;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
button { font: inherit; background: none; border: 0; cursor: pointer; color: inherit; }
a { color: inherit; text-decoration: none; transition: opacity .25s ease, color .25s ease; }
a:hover { opacity: .75; }
ul { list-style: none; }
address { font-style: normal; }

/* ---------- Tokens ---------- */
:root {
  --bg:           #0a0a0a;
  --bg-alt:       #111111;
  --surface:      #161616;
  --border:       #262626;
  --text:         #f0f0f0;
  --text-muted:   #a8a8a8;
  --accent:       #c9a961;     /* champagne / or doux */
  --accent-soft:  #e8d9b8;
  --max-width:    1200px;
  --radius:       6px;
  --serif:        'Cormorant Garamond', 'Times New Roman', serif;
  --sans:         'Inter', system-ui, sans-serif;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  position: relative;
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}

/* ---------- Typography ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}

.section-title,
.hero-title {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--text);
}

.section-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin-bottom: 24px;
}
.section-title em {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}

.lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 56ch;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all .25s ease;
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #0a0a0a;
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-soft);
  border-color: var(--accent-soft);
  opacity: 1;
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: rgba(255,255,255,0.25);
}
.btn-ghost:hover {
  border-color: var(--text);
  background: rgba(255,255,255,0.04);
  opacity: 1;
}
.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn-outline:hover {
  background: var(--accent);
  color: #0a0a0a;
  opacity: 1;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 4px;
}
.link-arrow::after {
  content: '→';
  transition: transform .25s ease;
}
.link-arrow:hover { opacity: 1; }
.link-arrow:hover::after { transform: translateX(4px); }

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  background: rgba(10,10,10,0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all .3s ease;
}
.site-header.scrolled {
  background: rgba(10,10,10,0.92);
  border-bottom-color: var(--border);
  padding: 12px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand-logo {
  height: 44px;
  width: auto;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-eyebrow {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.brand-name {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text);
}

.site-nav ul {
  display: flex;
  gap: 36px;
}
.site-nav a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  position: relative;
  padding: 4px 0;
}
.site-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width .3s ease;
}
.site-nav a:hover { opacity: 1; }
.site-nav a:hover::after { width: 100%; }

.header-cta { padding: 10px 22px; font-size: 12px; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  position: relative;
  z-index: 110;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text);
  transition: transform .25s ease, opacity .25s ease;
  transform-origin: center;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 960px) {
  .site-nav {
    position: fixed;
    top: 70px;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: calc(100vh - 70px);
    height: calc(100dvh - 70px);
    background: linear-gradient(180deg, rgba(12,12,12,0.96) 0%, rgba(8,8,8,0.98) 100%);
    -webkit-backdrop-filter: blur(20px) saturate(140%);
    backdrop-filter: blur(20px) saturate(140%);
    border-top: 1px solid rgba(201,169,97,0.15);
    transform: translateX(100%);
    transition: transform .35s ease;
    padding: 48px 32px;
    overflow-y: auto;
    z-index: 90;
  }
  .site-header.scrolled .site-nav {
    top: 58px;
    height: calc(100vh - 58px);
    height: calc(100dvh - 58px);
  }
  .site-nav.is-open { transform: translateX(0); }
  .site-nav ul {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
  .site-nav li { width: 100%; }
  .site-nav a {
    display: block;
    width: 100%;
    padding: 18px 4px;
    font-size: 1.5rem;
    font-family: var(--serif);
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .site-nav a::after { display: none; }
  .nav-toggle { display: flex; }
  .header-cta { display: none; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #0a0a0a;
  background-image:
    linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.75) 60%, rgba(5,5,5,0.95) 100%),
    url('/images/hero.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
  padding: 120px 0 80px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.012) 0 1px, transparent 1px 60px);
  pointer-events: none;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 25%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
}
.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  margin: 18px 0 32px;
}
.hero-title em {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}
.hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.hero-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  flex-wrap: wrap;
}
.hero-meta .dot { color: var(--accent); }

.hero-scroll {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  width: 24px; height: 40px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  z-index: 3;
}
.hero-scroll span {
  display: block;
  width: 2px; height: 8px;
  background: var(--accent);
  margin: 8px auto;
  border-radius: 1px;
  animation: scrollHint 2s infinite;
}
@keyframes scrollHint {
  0%   { transform: translateY(0);    opacity: 1; }
  60%  { transform: translateY(12px); opacity: 0; }
  100% { transform: translateY(0);    opacity: 0; }
}

/* ============================================
   ABOUT
   ============================================ */
.about { background: var(--bg); }
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text .lead { margin: 24px 0 32px; }
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.stat {
  background: var(--bg-alt);
  padding: 36px 28px;
  text-align: center;
}
.stat-num {
  display: block;
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 500;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
}
.stat-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.5;
}
@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ============================================
   SERVICES
   ============================================ */
.services { background: var(--bg-alt); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform .35s ease, border-color .35s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}
.service-img {
  aspect-ratio: 4 / 5;
  background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
  position: relative;
  overflow: hidden;
}
.service-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0 2px, transparent 2px 12px);
}
.service-img[data-img="coupe"]   { background-image: linear-gradient(180deg, #2a2a2a 0%, #0a0a0a 100%); }
.service-img[data-img="barbe"]   { background-image: linear-gradient(180deg, #1f1f1f 0%, #0a0a0a 100%); }
.service-img[data-img="tresses"] { background-image: linear-gradient(180deg, #252525 0%, #0a0a0a 100%); }
.service-img[data-img="enfant"]  { background-image: linear-gradient(180deg, #1c1c1c 0%, #0a0a0a 100%); }
.service-body {
  padding: 28px 24px;
}
.service-body h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 12px;
}
.service-body p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 18px;
}
@media (max-width: 1000px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .services-grid { grid-template-columns: 1fr; } }

/* ============================================
   PILIERS
   ============================================ */
.pillars { background: var(--bg); }
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.pillar {
  text-align: center;
  padding: 32px 24px;
}
.pillar-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
}
.pillar-icon svg { width: 32px; height: 32px; }
.pillar h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 14px;
}
.pillar p {
  color: var(--text-muted);
  font-size: 0.98rem;
}
@media (max-width: 900px) {
  .pillars-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}
@media (max-width: 540px) {
  .pillars-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* ============================================
   TÉMOIGNAGES
   ============================================ */
.testimonials { background: var(--bg-alt); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.testimonial p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--text);
  margin-bottom: 24px;
}
.testimonial footer {
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.testimonial footer strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 4px;
}
.testimonial footer span {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}
@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* ============================================
   CTA FINALE
   ============================================ */
.cta-final {
  background: var(--bg);
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 500;
  margin-bottom: 14px;
}
.cta-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 36px;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  background-color: #0a0a0a;
  background-image:
    linear-gradient(180deg, rgba(10,10,10,0.7) 0%, rgba(10,10,10,0.85) 60%, rgba(5,5,5,0.95) 100%),
    url('/images/hero.jpg');
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
  padding: 160px 0 80px;
  text-align: center;
}
.page-coiffure .page-hero {
  background-image:
    linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.78) 60%, rgba(5,5,5,0.95) 100%),
    url('/images/coiffure-hero.jpg');
}
.page-tarifs .page-hero {
  background-image:
    radial-gradient(ellipse at 50% 30%, rgba(201,169,97,0.05) 0%, transparent 60%),
    linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
}
.page-tarifs .page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,0.012) 0 1px, transparent 1px 60px);
  pointer-events: none;
}

/* ============================================
   TARIFS — Grille
   ============================================ */
.grille { background: var(--bg-alt); }
.tarifs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.tarif-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.tarif-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
}
.tarif-card-head {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.tarif-card-head h3 {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--text);
  margin-top: 6px;
}
.tarif-list {
  list-style: none;
  margin: 0 0 24px;
  flex: 1;
}
.tarif-list li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--border);
  font-size: 0.97rem;
}
.tarif-list li:last-child { border-bottom: none; }
.tarif-label {
  color: var(--text);
  flex-shrink: 0;
  max-width: 70%;
}
.tarif-label small {
  color: var(--text-muted);
  font-size: 0.85em;
  font-weight: 400;
}
.tarif-dot {
  flex: 1;
  border-bottom: 1px dotted rgba(255,255,255,0.2);
  margin-bottom: 6px;
  min-width: 16px;
}
.tarif-price {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--accent);
  flex-shrink: 0;
}
.tarif-feature {
  background: rgba(201,169,97,0.06);
  margin: 4px -12px;
  padding-left: 12px !important;
  padding-right: 12px !important;
  border-radius: 4px;
}
.tarif-feature .tarif-label { font-weight: 500; }
.tarif-note {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-style: italic;
  margin-top: 12px;
}

@media (max-width: 1100px) { .tarifs-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 720px)  { .tarifs-grid { grid-template-columns: 1fr; } }

/* ============================================
   TARIFS — Carte du salon (photo encadrée)
   ============================================ */
.carte-salon { background: var(--bg); }
.carte-frame {
  max-width: 640px;
  margin: 48px auto 0;
  border: 1px solid var(--border);
  background: #050505;
  padding: 18px;
  position: relative;
}
.carte-frame::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(201,169,97,0.25);
  pointer-events: none;
}
.carte-frame img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid #1a1a1a;
}
.carte-frame figcaption {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-style: italic;
  margin-top: 16px;
  padding: 0 8px;
}
.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 880px;
  margin: 0 auto;
}
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--accent); opacity: 1; }
.breadcrumb [aria-current="page"] { color: var(--accent); }
.breadcrumb span[aria-hidden] { color: var(--border); }

.page-title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 24px;
}
.page-title em { font-style: italic; color: var(--accent); font-weight: 400; }
.page-sub {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.page-hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   INTRO (2-col)
   ============================================ */
.intro { background: var(--bg); }
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}
.intro-text p { color: var(--text-muted); margin-bottom: 18px; }
.intro-text p.lead { color: var(--text); font-size: 1.15rem; }
@media (max-width: 900px) {
  .intro-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================================
   PRESTATIONS (alternating layout)
   ============================================ */
.prestations { background: var(--bg-alt); }
.prestation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 100px;
}
.prestation:last-child { margin-bottom: 0; }
.prestation:nth-of-type(even) .prestation-img { order: 2; }

.prestation-img {
  aspect-ratio: 4 / 5;
  background: linear-gradient(180deg, #1c1c1c 0%, #0a0a0a 100%);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.prestation-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.018) 0 2px, transparent 2px 14px);
}
.prestation-img[data-img="coupe"]    { background-image: linear-gradient(180deg, #2a2a2a 0%, #0a0a0a 100%); }
.prestation-img[data-img="barbe"]    { background-image: linear-gradient(180deg, #1f1f1f 0%, #0a0a0a 100%); }
.prestation-img[data-img="tresses"]  { background-image: linear-gradient(180deg, #252525 0%, #0a0a0a 100%); }
.prestation-img[data-img="vanilles"] { background-image: linear-gradient(180deg, #232323 0%, #0a0a0a 100%); }
.prestation-img[data-img="cornrows"] { background-image: linear-gradient(180deg, #1e1e1e 0%, #0a0a0a 100%); }
.prestation-img[data-img="twists"]   { background-image: linear-gradient(180deg, #282828 0%, #0a0a0a 100%); }
.prestation-img[data-img="enfant"]   { background-image: linear-gradient(180deg, #1c1c1c 0%, #0a0a0a 100%); }

/* Quand on aura les vraies photos, on remplace par background-image: url() */
.prestation-img.has-photo::after { display: none; }

.prestation-body h3 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 500;
  line-height: 1.2;
  margin: 12px 0 20px;
}
.prestation-body p {
  color: var(--text-muted);
  margin-bottom: 16px;
}
.prestation-body strong { color: var(--text); font-weight: 500; }

.check-list {
  list-style: none;
  margin-top: 20px;
}
.check-list li {
  position: relative;
  padding: 8px 0 8px 28px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-size: 0.98rem;
}
.check-list li:last-child { border-bottom: none; }
.check-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 14px;
  width: 14px; height: 8px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}

@media (max-width: 880px) {
  .prestation { grid-template-columns: 1fr; gap: 24px; margin-bottom: 64px; }
  .prestation:nth-child(even) .prestation-img { order: 0; }
}

/* ============================================
   RITUEL (steps)
   ============================================ */
.rituel { background: var(--bg); }
.ritual-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}
.ritual-steps li {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 36px 28px;
  position: relative;
  border-top: 2px solid var(--accent);
}
.step-num {
  display: block;
  font-family: var(--serif);
  font-size: 2.4rem;
  color: var(--accent);
  margin-bottom: 12px;
  line-height: 1;
}
.ritual-steps h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 10px;
}
.ritual-steps p { color: var(--text-muted); font-size: 0.95rem; }
@media (max-width: 1000px) { .ritual-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .ritual-steps { grid-template-columns: 1fr; } }

/* ============================================
   WHY (4 cards)
   ============================================ */
.why { background: var(--bg-alt); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 40px 32px;
  transition: border-color .3s ease;
}
.why-card:hover { border-color: var(--accent); }
.why-card h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 14px;
}
.why-card p { color: var(--text-muted); }
.why-card em { color: var(--accent); font-style: normal; }
@media (max-width: 800px) { .why-grid { grid-template-columns: 1fr; } }

/* ============================================
   LOCALISATION
   ============================================ */
.localisation { background: var(--bg); }
.localisation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.loc-info {
  list-style: none;
  margin-top: 24px;
}
.loc-info li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.98rem;
}
.loc-info li:last-child { border-bottom: none; }
.loc-info strong { color: var(--text); font-weight: 500; margin-right: 6px; }
.loc-info a:hover { color: var(--accent); opacity: 1; }
.map-wrap {
  border: 1px solid var(--border);
  overflow: hidden;
  aspect-ratio: 4 / 5;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: invert(0.92) hue-rotate(180deg) saturate(0.6);
}
@media (max-width: 900px) {
  .localisation-grid { grid-template-columns: 1fr; gap: 32px; }
  .map-wrap { aspect-ratio: 4 / 3; }
}

/* ============================================
   FAQ (accordion)
   ============================================ */
.faq { background: var(--bg-alt); }
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  background: var(--bg);
  border: 1px solid var(--border);
  margin-bottom: 12px;
  transition: border-color .25s ease;
}
.faq-item[open] { border-color: var(--accent); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 56px 22px 28px;
  position: relative;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--sans);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--accent);
  transition: transform .3s ease;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item summary:hover { color: var(--accent); }
.faq-item p {
  padding: 0 28px 22px;
  color: var(--text-muted);
  line-height: 1.7;
}
.faq-item a { color: var(--accent); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: #050505;
  padding: 80px 0 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 48px;
  padding-bottom: 60px;
}
.footer-col h4 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 18px;
}
.footer-brand .brand-name {
  display: block;
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--text);
}
.footer-brand p { font-size: 0.95rem; max-width: 340px; }
.footer-nav li { margin-bottom: 8px; }
.footer-nav a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 24px;
  }
  .footer-brand { grid-column: span 2; }
  .footer-bottom .container { flex-direction: column; gap: 8px; text-align: center; }
}

/* ============================================
   BLOG / ACTUALITÉS
   ============================================ */

/* Listing page */
.page-actualites .page-hero { padding-bottom: 0; }

.actualites-list { background: var(--bg); }
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 1000px) {
  .articles-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (max-width: 640px) {
  .articles-grid { grid-template-columns: 1fr; gap: 20px; }
}

.article-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .3s ease, transform .3s ease;
}
.article-card:hover { border-color: var(--accent); transform: translateY(-4px); }

.article-card-img {
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.article-card-img::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.5) 100%);
}
.article-card-img[data-img="rasage"]   { background-image: linear-gradient(180deg, #2a2a2a 0%, #0a0a0a 100%); }
.article-card-img[data-img="tresses-guide"] { background-image: linear-gradient(180deg, #252525 0%, #0a0a0a 100%); }
.article-card-img[data-img="degrade"]  { background-image: linear-gradient(180deg, #1f1f1f 0%, #0a0a0a 100%); }
.article-card-img.has-photo::after { display: none; }

.article-card-body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.article-card-meta {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.article-card-meta .dot { margin: 0 8px; color: var(--border); }
.article-card-meta .cat { color: var(--accent); }

.article-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.2;
  margin-bottom: 14px;
  color: var(--text);
}
.article-card-excerpt {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 22px;
  flex: 1;
}
.article-card .link-arrow {
  margin-top: auto;
  align-self: flex-start;
}

/* Article page hero */
.page-article .page-hero {
  padding: 140px 0 60px;
}
.page-article .page-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  max-width: 880px;
}
.article-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  align-items: center;
  margin-top: 28px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.article-meta-row .dot { color: var(--border); }
.article-meta-row .cat { color: var(--accent); font-weight: 500; }

/* Article body — prose */
.article-body { background: var(--bg); padding: 80px 0 100px; }
@media (max-width: 768px) { .article-body { padding: 56px 0 72px; } }

.article-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text);
}
.article-content > p { margin-bottom: 24px; color: var(--text-muted); }
.article-content > p.lead {
  font-size: 1.25rem;
  color: var(--text);
  line-height: 1.55;
  margin-bottom: 36px;
  font-weight: 300;
}
.article-content h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.85rem;
  line-height: 1.2;
  color: var(--text);
  margin: 56px 0 20px;
  letter-spacing: -0.01em;
}
.article-content h2:first-child { margin-top: 0; }
.article-content h2 em { font-style: italic; color: var(--accent); font-weight: 400; }
.article-content h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.25;
  color: var(--text);
  margin: 36px 0 14px;
}
.article-content strong { color: var(--text); font-weight: 500; }
.article-content em { color: var(--accent-soft); font-style: italic; }
.article-content a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.article-content a:hover { opacity: 1; color: var(--accent-soft); }
.article-content ul, .article-content ol {
  margin: 0 0 24px 0;
  padding-left: 0;
  color: var(--text-muted);
}
.article-content ul li, .article-content ol li {
  position: relative;
  padding: 6px 0 6px 26px;
  border-bottom: 1px solid var(--border);
}
.article-content ul li:last-child, .article-content ol li:last-child { border-bottom: none; }
.article-content ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 18px;
  width: 14px; height: 1px;
  background: var(--accent);
}
.article-content ol { counter-reset: ol-counter; }
.article-content ol li { counter-increment: ol-counter; padding-left: 36px; }
.article-content ol li::before {
  content: counter(ol-counter, decimal-leading-zero);
  position: absolute;
  left: 0; top: 6px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--accent);
  background: none;
  width: auto; height: auto;
}
.article-content blockquote {
  border-left: 2px solid var(--accent);
  padding: 8px 0 8px 28px;
  margin: 32px 0;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-style: italic;
  line-height: 1.4;
  color: var(--text);
}

/* Inline CTA box mid-article */
.article-cta-inline {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin: 40px 0;
}
.article-cta-inline p {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--text);
  margin-bottom: 18px;
  line-height: 1.4;
}
.article-cta-inline .btn { font-size: 11px; padding: 12px 26px; }

/* Related articles */
.article-related { background: var(--bg-alt); }
.article-related .articles-grid { gap: 24px; }
.article-related .article-card { background: var(--bg); }

/* Article hero variants */
.article-card-img[data-img="rasage"].has-photo,
.page-article-rasage .page-hero::before,
.page-article-tresses .page-hero::before,
.page-article-degrade .page-hero::before { display: none; }

