/* Point G Ink — feuille de style partagée */

:root {
  /* Palette resserrée — un seul accent, jamais en fond de section */
  --bg: #0a0a0a;
  --bg-alt: #101010;
  --card: #151515;
  --ink: #f5f2ee;
  --ink-soft: #f8f5f1;
  --text: #c9c5c0;
  --muted: #928d88;
  --accent: #8a1f2e;
  --accent-hover: #a8283a;
  --accent-deep: #4a1019;
  --accent-border: rgba(138, 31, 46, 0.35);
  --accent-soft: rgba(138, 31, 46, 0.12);
  /* Teintes éclaircies du même accent, réservées au TEXTE sur fond sombre —
     #8a1f2e/#a8283a n'atteignent que 2.2:1 / 2.9:1 sur #0a0a0a (échoue AA).
     #d6485c / #db6172 passent 4.65:1 / 5.63:1 (WCAG AA texte normal). */
  --accent-text: #d6485c;
  --accent-text-hover: #db6172;
  --border: rgba(255, 255, 255, 0.06);
  --border-strong: rgba(255, 255, 255, 0.08);

  /* Échelle d'espacement (base 8px) */
  --sp-1: 8px;
  --sp-2: 16px;
  --sp-3: 24px;
  --sp-4: 32px;
  --sp-5: 40px;
  --sp-6: 48px;
  --sp-8: 64px;
  --sp-10: 80px;
  --sp-12: 96px;
  --sp-16: 128px;
  --sp-section: clamp(96px, 14vw, 220px);
  --sp-section-tight: clamp(64px, 9vw, 140px);

  /* Échelle typographique */
  --fs-display-xl: clamp(48px, 8vw, 116px);
  --fs-display-lg: clamp(36px, 5.5vw, 72px);
  --fs-display-md: clamp(28px, 4vw, 44px);
  --fs-display-sm: clamp(22px, 3vw, 32px);

  /* Easings */
  --ease-premium: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --dur-fast: 0.2s;
  --dur-base: 0.4s;
  --dur-slow: 0.7s;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  min-height: 100vh;
  position: relative;
}

/* Grain + vignette ambiance, applied above everything, click-through */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9000;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 8999;
  pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 45%, rgba(0,0,0,0.55) 100%);
}

.font-display { font-family: 'Fraunces', serif; }

a { color: var(--accent-text); text-decoration: none; }
a:hover { color: var(--accent-text-hover); }
::selection { background: var(--accent); color: var(--ink); }
img { max-width: 100%; display: block; }
input, textarea, select, button { font-family: 'Inter', sans-serif; }

.eyebrow {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-text);
}

h1, h2, h3, h4 { font-family: 'Fraunces', serif; color: var(--ink-soft); margin: 0; }

/* Hover CTA unique, réutilisé par tous les boutons du site (voir aussi
   .form-submit plus bas, qui partage exactement le même traitement). */
.cta-hover, .btn, .form-submit {
  transition: transform var(--dur-fast) var(--ease-premium),
    box-shadow var(--dur-fast) var(--ease-premium),
    background var(--dur-fast) ease, border-color var(--dur-fast) ease, color var(--dur-fast) ease;
}
.cta-hover:hover, .btn:hover, .form-submit:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 10px 28px rgba(138, 31, 46, 0.32);
}
.cta-hover:active, .btn:active, .form-submit:active { transform: translateY(0) scale(0.99); }
@media (prefers-reduced-motion: reduce) {
  .cta-hover:hover, .btn:hover, .form-submit:hover { transform: none; }
}

.btn {
  display: inline-block;
  border-radius: 2px;
  font-weight: 600;
  font-size: 15px;
  padding: 16px 32px;
  border: none;
  cursor: pointer;
  text-align: center;
}
.btn-primary { background: var(--accent); color: var(--ink); }
.btn-primary:hover { background: var(--accent-hover); color: var(--ink); }
.btn-outline { border: 1px solid rgba(138, 31, 46, 0.4); color: var(--ink); background: transparent; }
.btn-outline:hover { border-color: var(--accent); color: var(--ink); }
.btn-small { padding: 11px 24px; font-size: 14px; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 48px; }

/* ---------- Preloader ---------- */
html.is-loading, html.is-loading body { overflow: hidden; }
.preloader {
  position: fixed; inset: 0; z-index: 99999;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg);
  transition: opacity var(--dur-base) var(--ease-premium), visibility 0s linear var(--dur-base);
}
.preloader.hide { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.preloader-mark { color: var(--ink-soft); overflow: visible; }
.preloader-mark .mark-path { stroke-dasharray: 400; stroke-dashoffset: 400; }
.preloader-mark .mark-dot { fill: var(--accent); opacity: 0; }
.preloader-word {
  font-family: 'Pirata One', serif;
  font-size: 19px;
  letter-spacing: 1.5px;
  color: var(--muted);
  opacity: 0;
}
@media (prefers-reduced-motion: reduce) {
  .preloader { transition: none; }
}

/* ---------- Header ---------- */
/* Transparente en haut de page, opaque + floutée dès qu'on défile —
   toggle de la classe .scrolled géré en JS (voir initHeaderScroll). */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: transparent;
  backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: background var(--dur-base) var(--ease-premium),
    backdrop-filter var(--dur-base) var(--ease-premium),
    border-color var(--dur-base) var(--ease-premium);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  gap: 16px;
}
.site-header.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(138, 31, 46, 0.15);
}
/* Garantit la lisibilité du texte tant que le fond est transparent,
   quel que soit ce qu'il y a derrière (vidéo hero, image). */
.site-header:not(.scrolled) .brand,
.site-header:not(.scrolled) .nav-link {
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.65);
}
@media (prefers-reduced-motion: reduce) {
  .site-header { transition: none; }
}
.brand {
  font-family: 'Pirata One', serif;
  font-size: 26px;
  letter-spacing: 1px;
  color: var(--ink);
  white-space: nowrap;
}
.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}
.main-nav a.nav-link {
  color: var(--muted);
  font-size: 14px;
  letter-spacing: 0.5px;
}
.main-nav a.nav-link.active { color: var(--accent-text-hover); }
.nav-icon-link { display: flex; align-items: center; gap: 8px; }
.nav-icon-label { display: none; }
@media (max-width: 720px) {
  .nav-icon-label { display: inline; }
}
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--accent-border);
  border-radius: 2px;
  color: var(--ink);
  padding: 8px 10px;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; }
.hero-media img, .hero-media video { width: 100%; height: 100%; object-fit: cover; opacity: 0.55; }
.hero-grade {
  position: absolute;
  inset: 0;
  background: var(--accent);
  opacity: 0.16;
  mix-blend-mode: color;
  pointer-events: none;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.35) 0%, rgba(20, 8, 10, 0.6) 45%, rgba(10, 10, 10, 0.9) 75%, #0a0a0a 100%);
  pointer-events: none;
}
.hero-content { position: relative; max-width: 900px; padding: 0 48px; z-index: 2; }
.hero-kicker { display: flex; align-items: center; gap: 10px; margin-bottom: 24px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); display: inline-block; }
.hero-kicker span.label { font-size: 13px; letter-spacing: 2px; text-transform: uppercase; color: var(--accent-text); }
.hero h1 { font-size: clamp(40px, 6vw, 76px); line-height: 1.08; margin: 0 0 24px; }
.hero h1 .word { display: inline-block; overflow: hidden; vertical-align: top; padding-bottom: 0.12em; margin-bottom: -0.12em; }
.hero h1 .word-inner {
  display: inline-block;
  opacity: 0;
  transform: translateY(115%);
  transition: opacity var(--dur-base) var(--ease-premium), transform var(--dur-slow) var(--ease-premium);
}
.hero h1.reveal .word-inner { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .hero h1 .word-inner { opacity: 1; transform: none; transition: none; }
}
.hero p.lead { font-size: 18px; line-height: 1.7; color: var(--text); max-width: 600px; margin: 0 0 40px; }
.hero-ctas { display: flex; gap: 18px; flex-wrap: wrap; }

/* Page header (non-home) */
.page-head { padding: var(--sp-section-tight) 48px var(--sp-8); max-width: 1280px; margin: 0 auto; text-align: center; }
.page-head h1 { font-size: clamp(32px, 5vw, 56px); margin: 16px 0 20px; }
.page-head p { font-size: 16px; color: var(--text); max-width: 640px; margin: 0 auto; line-height: 1.7; }

/* ---------- Trust strip ---------- */
.trust-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
}
.trust-strip .container {
  padding: 28px 48px;
  display: flex;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 12px; }
.trust-rating { font-family: 'Fraunces', serif; font-size: 22px; color: var(--accent-text); }
.trust-note { font-size: 13px; color: var(--muted); }
.badge {
  background: rgba(138, 31, 46, 0.12);
  color: var(--accent-text);
  font-size: 12px;
  letter-spacing: 0.5px;
  padding: 6px 12px;
  border-radius: 2px;
  border: 1px solid var(--accent-border);
}

/* ---------- Sections ---------- */
section.pad { padding: var(--sp-section) 48px; }
section.pad-tight { padding: 0 48px var(--sp-section); }
.section-head { text-align: center; margin-bottom: 64px; }
.section-head h2 { font-size: clamp(28px, 4vw, 44px); margin-top: 16px; }
.section-head-split {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 48px; flex-wrap: wrap; gap: 16px;
}
.section-head-split h2 { font-size: clamp(26px, 4vw, 38px); margin-top: 12px; }
.link-strong { font-size: 14px; font-weight: 600; }

/* Split-screen "Choisissez votre parcours" */
.split-hero-section { padding-top: var(--sp-section); padding-bottom: var(--sp-section); }
.split-hero-section .section-head { margin-bottom: var(--sp-8); }
.split-hero { display: flex; width: 100%; height: clamp(520px, 88vh, 860px); }
.split-side {
  position: relative;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  transition: flex var(--dur-slow) var(--ease-premium);
}
.split-side + .split-side { border-left: 1px solid rgba(255, 255, 255, 0.08); }
.split-side img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-premium), filter var(--dur-slow) var(--ease-premium);
}
.split-scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.15) 0%, rgba(10, 10, 10, 0.88) 100%);
  pointer-events: none;
}
.split-content { position: relative; z-index: 2; padding: var(--sp-6) var(--sp-6) var(--sp-8); max-width: 520px; }
.split-index { font-family: 'Fraunces', serif; font-size: 14px; letter-spacing: 3px; color: var(--accent-text); }
.split-content h3 { font-size: clamp(30px, 4vw, 54px); margin: var(--sp-2) 0 var(--sp-3); }
.split-content p { font-size: 15px; color: var(--text); margin: 0 0 var(--sp-3); max-width: 380px; }
.split-cta { color: var(--accent-text); font-size: 14px; font-weight: 600; }
.split-side:hover .split-cta { color: var(--accent-text-hover); }

/* Le Studio : grade chaud, teinté avec l'unique accent de la palette */
.split-studio::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: var(--accent); opacity: 0.14; mix-blend-mode: color; pointer-events: none;
}

/* La Boutique : traitement plus froid/argenté — la différenciation entre
   les deux univers passe par la désaturation, pas par une seconde teinte
   de marque (palette resserrée à un seul accent). */
.split-shop img { filter: grayscale(0.55) contrast(1.05); }

@media (hover: hover) and (min-width: 901px) {
  .split-side:hover { flex: 1.5; }
  .split-side:hover img { transform: scale(1.04); }
}
@media (prefers-reduced-motion: reduce) {
  .split-side, .split-side img { transition: none; }
}
@media (max-width: 900px) {
  .split-hero { flex-direction: column; height: auto; }
  .split-side { height: 62vh; min-height: 420px; flex: none; }
  .split-side + .split-side { border-left: none; border-top: 1px solid rgba(255, 255, 255, 0.08); }
}

/* Cards grid (artists / products) */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.card img { width: 100%; height: 280px; object-fit: cover; }
.card-body { padding: 24px; }
.card-body h4, .card-body h3 { font-size: 20px; margin: 0 0 6px; }
.card-body .meta { font-size: 13px; color: var(--muted); margin: 0; }
.card-body .styles { font-size: 13px; color: var(--accent-text); margin: 0 0 12px; }
.card-body .bio { font-size: 13px; color: var(--muted); line-height: 1.6; margin: 0 0 16px; }

/* Drive-to-store */
.split {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.split img { border-radius: 4px; }
.split-media { border-radius: 4px; overflow: hidden; border: 1px solid var(--border-strong); }
.split-media img { width: 100%; height: 420px; object-fit: cover; }
.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 32px; }
.stat-num { font-family: 'Fraunces', serif; font-size: 36px; color: var(--accent-text); }
.stat-label { font-size: 13px; color: var(--muted); }
.section-alt { background: var(--card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

/* Products grid (home + shop) */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.product-card { display: block; background: var(--card); border: 1px solid var(--border); border-radius: 4px; overflow: hidden; }
.product-card img { width: 100%; height: 220px; object-fit: cover; transition: transform .3s ease; }
.product-card:hover img { transform: scale(1.05); }
.product-card .p-body { padding: 18px; }
.product-card .p-name { font-size: 14px; color: var(--ink-soft); margin-bottom: 4px; }
.product-card .p-price { font-size: 13px; color: var(--accent-text); }

/* Quote */
.quote-section { padding: var(--sp-section-tight) 48px; text-align: center; }
.quote-cite { font-size: 14px; color: var(--muted); letter-spacing: 1px; text-transform: uppercase; }

/* Mini-carrousel témoignages — structure prête pour plusieurs avis même si
   un seul est fourni pour l'instant (pas de nav générée en dessous de 2). */
.testimonial-carousel { max-width: 760px; margin: 0 auto; position: relative; }
.testimonial-slide { display: none; }
.testimonial-slide.is-active { display: block; animation: testimonial-in .6s var(--ease-premium); }
@keyframes testimonial-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}

.testimonial-avatar {
  width: 56px; height: 56px; margin: 0 auto 24px;
  border-radius: 50%; border: 1px solid var(--border-strong);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-text); background: var(--card);
}
.testimonial-avatar svg { width: 26px; height: 26px; }

.testimonial-stars { display: flex; justify-content: center; gap: 6px; margin-bottom: 24px; }
.testimonial-stars span {
  font-size: 18px; color: var(--accent-text); line-height: 1;
  opacity: 0; transform: scale(0.4);
  transition: opacity .35s var(--ease-premium), transform .35s var(--ease-premium);
}
.testimonial-stars span::before { content: '★'; }
.testimonial-stars.in-view span { opacity: 1; transform: scale(1); }
.testimonial-stars.in-view span:nth-child(1) { transition-delay: 0ms; }
.testimonial-stars.in-view span:nth-child(2) { transition-delay: 70ms; }
.testimonial-stars.in-view span:nth-child(3) { transition-delay: 140ms; }
.testimonial-stars.in-view span:nth-child(4) { transition-delay: 210ms; }
.testimonial-stars.in-view span:nth-child(5) { transition-delay: 280ms; }

.testimonial-quote { font-size: clamp(28px, 4vw, 42px); margin: 0 0 20px; max-width: 760px; margin-left: auto; margin-right: auto; }

.testimonial-nav { display: flex; justify-content: center; gap: 10px; margin-top: 32px; }
.testimonial-dot {
  width: 8px; height: 8px; padding: 0; border-radius: 50%;
  border: none; background: var(--border-strong); cursor: pointer;
  transition: background var(--dur-fast) ease, transform var(--dur-fast) ease;
}
.testimonial-dot.active { background: var(--accent); transform: scale(1.3); }

@media (prefers-reduced-motion: reduce) {
  .testimonial-slide.is-active { animation: none; }
  .testimonial-stars span { transition: none; }
}

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--border-strong); background: var(--bg-alt); padding: 72px 48px 32px; }
.footer-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px; border-bottom: 1px solid var(--border);
}
.footer-brand { font-family: 'Pirata One', serif; font-size: 24px; margin-bottom: 14px; color: var(--ink-soft); }
.footer-desc { font-size: 13px; color: var(--muted); line-height: 1.7; max-width: 280px; }
.footer-title { font-size: 13px; color: var(--accent-text); margin-bottom: 14px; letter-spacing: 1px; text-transform: uppercase; }
.footer-links { display: flex; flex-direction: column; gap: 10px; font-size: 13px; }
.footer-links a { color: var(--text); }
.footer-text { font-size: 13px; color: var(--text); line-height: 1.7; margin: 0; }
.footer-bottom { font-size: 12px; color: var(--muted); text-align: center; padding-top: 24px; margin: 0; }
.footer-bottom a { color: var(--muted); text-decoration: underline; text-decoration-color: rgba(138, 31, 46, 0.4); }
.footer-bottom a:hover { color: var(--accent-text-hover); }
.todo-inline { color: var(--accent-text-hover); font-style: italic; }

/* ---------- Studio page ---------- */
.filters { display: flex; gap: 10px; flex-wrap: wrap; }
.filter-chip {
  font-size: 13px; padding: 8px 16px; border-radius: 20px;
  border: 1px solid var(--accent-border); color: var(--text); background: none; cursor: pointer;
}
.filter-chip.active, .filter-chip:hover { border-color: var(--accent); color: var(--accent-text-hover); }

.piercing-list { display: flex; flex-direction: column; }
.piercing-row {
  display: flex; justify-content: space-between; padding: 16px 0;
  border-bottom: 1px solid var(--border-strong);
}
.piercing-name { font-size: 15px; color: var(--ink-soft); }
.piercing-healing { font-size: 12px; color: var(--muted); margin-top: 2px; }
.piercing-price { font-family: 'Fraunces', serif; color: var(--accent-text); }

.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 64px; }
.step-card { text-align: center; padding: 28px 16px; border: 1px solid var(--border-strong); border-radius: 4px; }
.step-num { font-family: 'Fraunces', serif; font-size: 28px; color: var(--accent-text); margin-bottom: 12px; }
.step-title { font-size: 14px; color: var(--ink-soft); margin-bottom: 6px; font-weight: 600; }
.step-desc { font-size: 13px; color: var(--muted); }

.booking-form { background: var(--card); border: 1px solid var(--border-strong); border-radius: 4px; padding: 40px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.field label { font-size: 12px; color: var(--muted); display: block; margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; background: var(--bg); border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--ink); padding: 12px; border-radius: 2px; font-size: 14px;
}
.field textarea { resize: vertical; }
.dropzone {
  border: 1px dashed rgba(138, 31, 46, 0.4); border-radius: 2px;
  padding: 24px; text-align: center; font-size: 13px; color: var(--muted); cursor: pointer;
}
.dropzone.dragover { border-color: var(--accent); color: var(--accent-text-hover); background: rgba(138, 31, 46, 0.06); }
.form-submit {
  width: 100%; background: var(--accent); color: var(--ink); padding: 16px;
  border: none; border-radius: 2px; font-size: 15px; font-weight: 600; cursor: pointer;
}
.form-submit:hover { background: var(--accent-hover); }
.form-note { font-size: 13px; color: var(--muted); margin-top: 20px; }
.form-success { display: none; text-align: center; padding: 40px; }
.form-success.show { display: block; }
.form-success h3 { margin-bottom: 12px; }
.form-success p { color: var(--text); font-size: 14px; }

/* ---------- Shop page ---------- */
.shop-layout { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 240px 1fr; gap: 48px; }
.filter-group { margin-bottom: 36px; }
.filter-group-title { font-size: 13px; color: var(--accent-text); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px; }
.filter-options { display: flex; flex-direction: column; gap: 12px; }
.filter-option { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text); cursor: pointer; }
.filter-option input { accent-color: var(--accent); }
.price-range { width: 100%; accent-color: var(--accent); }
.price-range-labels { display: flex; justify-content: space-between; font-size: 12px; color: var(--muted); margin-top: 6px; }
.shop-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; flex-wrap: wrap; gap: 12px; }
.shop-count { font-size: 13px; color: var(--muted); }
.shop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.shop-card { background: var(--card); border: 1px solid var(--border); border-radius: 4px; overflow: hidden; position: relative; transition: border-color .2s; }
.shop-card:hover { border-color: rgba(138, 31, 46, 0.4); }
.shop-card-media { position: relative; height: 260px; }
.shop-card-media img { width: 100%; height: 100%; object-fit: cover; }
.shop-tags { position: absolute; bottom: 10px; left: 10px; display: flex; gap: 6px; pointer-events: none; }
.tag-chip { background: rgba(10, 10, 10, 0.75); border: 1px solid var(--accent-border); color: var(--accent-text); font-size: 11px; padding: 4px 8px; border-radius: 2px; }
.shop-card-body { padding: 18px; }
.shop-cat { font-size: 11px; color: var(--muted); letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 6px; }
.shop-name { font-size: 15px; color: var(--ink-soft); margin-bottom: 6px; }
.shop-price { font-family: 'Fraunces', serif; font-size: 16px; color: var(--accent-text); }

.trust-badges { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.trust-badge { display: flex; align-items: center; gap: 12px; padding: 14px; border: 1px solid var(--border-strong); border-radius: 2px; }
.trust-badge .dot { flex-shrink: 0; }
.trust-badge span.txt { font-size: 13px; color: var(--text); }

/* ---------- Infos page ---------- */
.care-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.care-card { background: var(--bg); border: 1px solid var(--border-strong); border-radius: 2px; padding: 24px; }
.care-title { font-family: 'Fraunces', serif; font-size: 18px; color: var(--accent-text); margin-bottom: 10px; }
.care-text { font-size: 13px; color: var(--text); line-height: 1.7; margin: 0; }

.faq-list { display: flex; flex-direction: column; gap: 1px; border: 1px solid var(--border-strong); border-radius: 4px; overflow: hidden; }
.faq-list details { background: var(--card); padding: 20px 24px; }
.faq-list summary { font-size: 15px; color: var(--ink-soft); cursor: pointer; font-weight: 600; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: '+'; float: right; color: var(--accent-text); font-size: 18px; }
.faq-list details[open] summary::after { content: '\2212'; }
.faq-list p { font-size: 14px; color: var(--text); line-height: 1.7; margin: 14px 0 0; }

.info-rows { display: flex; flex-direction: column; gap: 16px; }
.info-row { display: flex; gap: 14px; }
.info-row .k { color: var(--accent-text); font-weight: 600; font-size: 13px; min-width: 90px; }
.info-row .v { font-size: 14px; color: var(--ink-soft); }
.map-embed { border-radius: 4px; overflow: hidden; border: 1px solid var(--border-strong); }
.map-embed iframe { width: 100%; height: 360px; border: 0; display: block; }

/* ================= Responsive ================= */
@media (max-width: 980px) {
  .container, section.pad, section.pad-tight, .page-head, .quote-section { padding-left: 24px; padding-right: 24px; }
  .site-header { padding: 16px 24px; }
  .hero-content { padding: 0 24px; }
  .pillars, .split, .shop-layout, .care-grid { grid-template-columns: 1fr; }
  .card-grid, .product-grid, .steps-grid, .trust-badges { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .split-media img { height: 300px; }
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Micro-interactions ---------- */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 10000;
  border-radius: 50%; transform: translate(-50%, -50%);
  transition: opacity .2s ease;
}
.cursor-dot { width: 6px; height: 6px; background: var(--accent); }
.cursor-ring {
  width: 34px; height: 34px; border: 1px solid rgba(138,31,46,0.5);
  transition: width .18s ease, height .18s ease, border-color .18s ease, transform .05s linear, opacity .2s ease;
}
.cursor-ring.hover { width: 54px; height: 54px; border-color: var(--accent-hover); background: rgba(138,31,46,0.08); }
/* Studio : fine aiguille inclinée. Boutique : losange. Une seule couleur
   d'accent dans les deux cas — la différenciation passe par la forme. */
.cursor-ring.hover.mode-studio {
  width: 5px; height: 46px; border-radius: 3px;
  border-color: var(--accent-hover); background: rgba(138,31,46,0.18);
}
.cursor-ring.hover.mode-shop {
  width: 30px; height: 30px; border-radius: 4px;
  border-color: var(--accent-hover); background: rgba(138,31,46,0.1);
}
body.has-custom-cursor, body.has-custom-cursor a, body.has-custom-cursor button, body.has-custom-cursor input, body.has-custom-cursor textarea, body.has-custom-cursor select {
  cursor: none;
}
@media (hover: none), (max-width: 720px) {
  .cursor-dot, .cursor-ring { display: none !important; }
}

.ink-transition {
  position: fixed; inset: 0; z-index: 9500; pointer-events: none;
  background: radial-gradient(circle at var(--ix,50%) var(--iy,50%), var(--accent) 0%, var(--accent) 55%, transparent 75%);
  clip-path: circle(0% at var(--ix,50%) var(--iy,50%));
  opacity: 0;
}
.ink-transition.run {
  opacity: 1;
  animation: ink-spread .55s cubic-bezier(.6,0,.4,1) forwards;
}
@keyframes ink-spread {
  0% { clip-path: circle(0% at var(--ix,50%) var(--iy,50%)); opacity: 1; }
  70% { clip-path: circle(75% at var(--ix,50%) var(--iy,50%)); opacity: 1; }
  100% { clip-path: circle(120% at var(--ix,50%) var(--iy,50%)); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .ink-transition { display: none; }
}

.hero-media img, .hero-media video { will-change: transform; }

/* ---------- Portfolio gallery ---------- */
/* Carrousel horizontal (scroll-snap + drag) — accepte 3 à 10+ pièces sans
   changement de structure, il suffit d'ajouter des .gallery-thumb. */
.carousel-wrap { position: relative; margin-top: var(--sp-3); }
.gallery-grid {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scroll-padding-left: 2px;
  padding: 2px 2px 10px;
  cursor: grab;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-border) transparent;
}
.gallery-grid.dragging { cursor: grabbing; scroll-snap-type: none; user-select: none; }
.gallery-thumb {
  position: relative; flex: 0 0 auto; width: 148px;
  border-radius: 3px; overflow: hidden; cursor: pointer;
  aspect-ratio: 1; border: 1px solid var(--border);
  scroll-snap-align: start;
}
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease-premium); }
.gallery-thumb:hover img { transform: scale(1.08); }
.artist-card.is-hidden { display: none; }

.carousel-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(10, 10, 10, 0.75); border: 1px solid var(--border-strong); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; line-height: 1; cursor: pointer;
  opacity: 0; transition: opacity var(--dur-fast) ease, background var(--dur-fast) ease;
  z-index: 3;
}
.carousel-arrow:hover { background: var(--accent); border-color: var(--accent); }
.carousel-wrap:hover .carousel-arrow, .carousel-arrow:focus-visible { opacity: 1; }
.carousel-prev { left: -6px; }
.carousel-next { right: -6px; }
@media (hover: none) { .carousel-arrow { display: none; } }

.lightbox {
  position: fixed; inset: 0; z-index: 2000; background: rgba(6,5,7,0.92);
  display: none; align-items: center; justify-content: center; padding: 40px;
  backdrop-filter: blur(4px);
}
.lightbox.open { display: flex; }
.lightbox img { max-width: min(90vw, 900px); max-height: 85vh; border-radius: 4px; border: 1px solid var(--border-strong); }
.lightbox-close {
  position: absolute; top: 24px; right: 32px; background: none; border: 1px solid var(--accent-border);
  color: var(--ink); width: 40px; height: 40px; border-radius: 50%; font-size: 18px; cursor: pointer;
}
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%); background: none; border: 1px solid var(--accent-border);
  color: var(--ink); width: 44px; height: 44px; border-radius: 50%; font-size: 18px; cursor: pointer;
}
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

/* ---------- Reviews ---------- */
.reviews-strip { display: grid; grid-template-columns: 1fr 2fr; gap: 48px; align-items: center; }
.review-score { text-align: center; padding: 32px; border: 1px solid var(--border-strong); border-radius: 4px; }
.review-score .num { font-family: 'Fraunces', serif; font-size: 56px; color: var(--accent-text); line-height: 1; }
.review-score .stars { color: var(--accent-text); font-size: 18px; letter-spacing: 3px; margin: 10px 0; }
.review-score .count { font-size: 13px; color: var(--muted); }
.review-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card { background: var(--card); border: 1px solid var(--border); border-radius: 4px; padding: 22px; }
.review-card .stars { color: var(--accent-text); font-size: 13px; margin-bottom: 10px; }
.review-card p { font-size: 13px; color: var(--text); line-height: 1.7; margin: 0 0 12px; font-style: italic; }
.review-card .src { font-size: 11px; color: var(--muted); letter-spacing: 0.5px; text-transform: uppercase; }
.reviews-cta { margin-top: 32px; text-align: center; }

/* ---------- Loyalty ---------- */
.loyalty-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.loyalty-card { border: 1px solid var(--border-strong); border-radius: 4px; padding: 28px; text-align: center; }
.loyalty-card .pt { font-family: 'Fraunces', serif; font-size: 30px; color: var(--accent-text-hover); margin-bottom: 12px; }

/* Second accent usage */
.filter-chip.active { border-color: var(--accent-hover); color: var(--accent-text-hover); background: rgba(122,36,54,0.1); }
.faq-list summary::after { color: var(--accent-text-hover); }
.tag-chip.accent2 { border-color: rgba(168,58,82,0.5); color: var(--accent-text-hover); }

@media (max-width: 980px) {
  .reviews-strip { grid-template-columns: 1fr; }
  .review-cards, .loyalty-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .main-nav {
    position: fixed; inset: 72px 0 0 0; background: var(--bg);
    flex-direction: column; align-items: flex-start; gap: 0;
    padding: 12px 24px 32px; overflow-y: auto;
    transform: translateY(-8px); opacity: 0; pointer-events: none; transition: opacity .18s ease, transform .18s ease;
  }
  .main-nav.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .main-nav a.nav-link { width: 100%; padding: 14px 0; border-bottom: 1px solid var(--border); font-size: 16px; }
  .main-nav .btn { margin-top: 16px; width: 100%; }
  .card-grid, .product-grid, .steps-grid, .trust-badges, .form-row, .shop-grid, .stat-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .trust-strip .container { flex-direction: column; align-items: flex-start; gap: 12px; }
  .booking-form { padding: 24px; }
  .testimonial-quote { font-size: 24px; }
}
