:root {
  --bg: #FAF4EE;
  --surface: #FFFFFF;
  --surface-soft: #F2E6DD;
  --sand: #EFE7E1;            /* beige doux — DA premium */
  --border: #EBDDD0;
  --text: #2D1F1A;
  --text-muted: #7A6B5F;
  --text-dim: #A89A8E;
  --violet: #B07382;          /* dusty rose signature */
  --violet-hover: #9A5F6F;
  --gold: #C9A267;
  --blush: #F2D9D7;
  --success: #5B8A6E;
  --error: #B5474A;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-ui: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
}

/* === Typography premium tweaks (DA éditoriale) === */
h1, h2, h3, .accent { letter-spacing: -0.018em; }
.section-lead { letter-spacing: -0.005em; }

/* ============================================================
 * HERO ÉDITORIAL FIXE — remplace l'ancien slider antipattern
 * DA : éditorial calme, 2 colonnes, espace négatif
 * ============================================================ */
.hero-editorial {
  background: var(--bg);
  padding: clamp(32px, 5vw, 72px) 0 clamp(40px, 5vw, 64px);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.hero-copy .eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 22px;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(38px, 6.2vw, 80px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--text);
  margin: 0 0 22px;
  word-break: keep-all;
  hyphens: none;
}
@media (max-width: 480px) {
  .hero-title { font-size: 36px; line-height: 1.06; }
}

/* === Price grid éditoriale (section coiffeuses) === */
.price-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: var(--surface);
}
.price-cell {
  padding: 28px 22px;
  background: var(--surface);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.price-cell:last-child { border-right: 0; }
@media (min-width: 740px) {
  /* 4 columns side by side : remove bottom borders */
  .price-grid { grid-template-columns: repeat(4, 1fr); }
  .price-cell { border-bottom: 0; }
}
.price-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 10px;
}
.price-value {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.05;
  color: var(--text);
}
.price-meta { font-size: 12px; color: var(--text-muted); margin-top: 6px; }

/* === Cities grid : maillage interne SEO local éditorial === */
.cities-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.city-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  background: var(--surface);
  color: var(--text);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: background .15s, color .15s;
}
.city-card:hover { background: var(--sand); color: var(--violet); }
.city-name { letter-spacing: -0.01em; }
.city-arrow {
  font-size: 18px;
  color: var(--text-dim);
  transition: transform .2s, color .2s;
}
.city-card:hover .city-arrow { transform: translateX(4px); color: var(--violet); }
@media (max-width: 480px) {
  .city-card { padding: 18px 20px; font-size: 14px; }
}

/* === Tables admin : scroll horizontal sur mobile (anti-overflow) === */
@media (max-width: 768px) {
  .admin-page table, table.admin-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
    width: 100%;
  }
}
.hero-title em { font-style: italic; color: var(--violet); font-weight: 400; }
.hero-lead {
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 0 32px;
}
.hero-search {
  display: flex;
  gap: 8px;
  max-width: 480px;
  margin-bottom: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px;
  transition: border-color .15s, box-shadow .15s;
}
.hero-search:focus-within { border-color: var(--violet); box-shadow: 0 0 0 3px rgba(176,115,130,0.12); }
.hero-search input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  padding: 12px 18px;
  font-size: 15px;
  font-family: inherit;
  color: var(--text);
}
.hero-search input:focus { outline: none; }
.hero-search button { white-space: nowrap; padding: 12px 22px; font-size: 14px; border-radius: 999px; }
.hero-trust-inline { display: flex; flex-wrap: wrap; gap: 20px; font-size: 13px; color: var(--text-muted); }
.hero-trust-inline strong { color: var(--text); font-weight: 600; }
.hero-trust-inline span { display: inline-flex; align-items: center; gap: 4px; }

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  width: 100%;
  max-width: 480px;
  min-height: 360px;
  margin-left: auto;
  margin-right: 0;
  border-radius: 20px;
  overflow: hidden;
  background: var(--sand);
}
.hero-visual img {
  display: block;
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.95);
  transition: transform 1.2s cubic-bezier(.4,0,.2,1);
}
.hero-editorial:hover .hero-visual img { transform: scale(1.03); }
.hero-tag {
  position: absolute;
  bottom: 20px; left: 20px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 14px 18px;
  border-radius: 14px;
  max-width: 240px;
  box-shadow: 0 12px 30px rgba(45,31,26,0.10);
}
.hero-tag-eyebrow {
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-muted); font-weight: 600; display: block; margin-bottom: 4px;
}
.hero-tag strong {
  font-family: var(--font-display); font-style: italic;
  font-size: 22px; font-weight: 400; color: var(--text); display: block; line-height: 1.1;
}
.hero-tag small { font-size: 12px; color: var(--text-muted); display: block; margin-top: 2px; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-visual { aspect-ratio: 16/10; max-width: 100%; margin: 0; min-height: 280px; }
  .hero-copy { order: 1; }
  .hero-visual { order: 2; }
}
@media (max-width: 480px) {
  .hero-search { flex-direction: column; border-radius: 18px; }
  .hero-search input { text-align: center; }
  .hero-search button { width: 100%; }
}

/* === Bandeau promo discret (DA premium, pas criard) === */
.promo-banner {
  background: var(--text);
  color: var(--bg);
  font-size: 13px;
  font-weight: 400;
  padding: 9px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  letter-spacing: 0.01em;
  position: relative;
  z-index: 99;
}
.promo-banner code {
  background: rgba(255,255,255,0.12);
  padding: 2px 8px;
  border-radius: 6px;
  font-family: var(--font-ui);
  font-weight: 600;
  letter-spacing: 0.1em;
  font-size: 12px;
}
.promo-banner strong { color: var(--violet); font-weight: 500; }
.promo-close { background: transparent; border: 0; color: var(--bg); opacity: 0.6; font-size: 20px; line-height: 1; cursor: pointer; padding: 0 4px; transition: opacity .15s; }
.promo-close:hover { opacity: 1; }
@media (max-width: 600px) { .promo-banner { font-size: 12px; padding: 8px 12px; } }

/* === Logo stacké avec baseline éditoriale === */
.logo-stacked { display: inline-flex; flex-direction: column; line-height: 1; gap: 2px; }
.logo-stacked .logo-mark { font-family: var(--font-display); font-style: italic; font-weight: 400; font-size: 26px; letter-spacing: 0.04em; }
.logo-stacked .logo-tagline {
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-left: 1px;
}
@media (max-width: 480px) { .logo-stacked .logo-tagline { display: none; } }

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

/* A11y : skip link */
.skip-link {
  position: absolute;
  top: -100px; left: 16px;
  background: var(--violet);
  color: #FFF;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  z-index: 999;
  transition: top 0.2s;
  font-weight: 500;
}
.skip-link:focus { top: 16px; }

/* A11y : focus visible */
:focus-visible {
  outline: 3px solid var(--violet);
  outline-offset: 2px;
  border-radius: 4px;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--violet);
  outline-offset: 2px;
}
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
html { overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 clamp(16px, 3vw, 24px); }
.container-sm { max-width: 720px; margin: 0 auto; padding: 0 clamp(16px, 3vw, 24px); }

/* NAV — règle de base, override par .site-nav clean v2 ci-dessous */
.logo {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 28px;
  letter-spacing: 0.05em;
}
.logo .o { color: var(--violet); }
.mobile-drawer { display: none; }

/* === NAV CLEAN v2 === */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 244, 238, 0.85);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, background 0.2s;
}
.site-nav.scrolled {
  border-bottom-color: var(--border);
  background: rgba(250, 244, 238, 0.95);
}
.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 32px;
  min-height: 64px;
}
.site-nav .logo {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 26px;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--text);
  flex-shrink: 0;
}
.site-nav .logo .o { color: var(--violet); }

.nav-main {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 4px;
  align-items: center;
  flex: 1;
}
.nav-main li { position: relative; }
.nav-link, .nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-radius: 999px;
  background: transparent;
  border: none;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.nav-link:hover, .nav-trigger:hover,
.nav-trigger[aria-expanded="true"] {
  background: var(--surface-soft);
  color: var(--violet);
}
.nav-trigger svg { transition: transform 0.2s; opacity: 0.7; }
.nav-trigger[aria-expanded="true"] svg { transform: rotate(180deg); opacity: 1; }

/* Mega menu */
.mega-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 20px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 12px 40px rgba(45, 31, 26, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: all 0.2s ease;
  z-index: 200;
  min-width: 760px;
  max-width: 100vw;
}
@media (max-width: 1024px) {
  .mega-menu { min-width: 560px; }
}
.has-dropdown:hover .mega-menu,
.has-dropdown:focus-within .mega-menu,
.has-dropdown .mega-menu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.mega-col h4 {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 8px;
}
.mega-col a {
  display: block;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 400;
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
  margin: 2px 0;
}
.mega-col a:hover { background: var(--blush); color: var(--violet); }

/* Right side actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.nav-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: transparent;
  border: none;
  color: var(--text);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.nav-icon-btn:hover { background: var(--surface-soft); color: var(--violet); }
.nav-icon-btn form { display: inline; }

.nav-pill,
.nav-pill-ghost,
.nav-pill-primary,
.nav-pill-text,
.nav-pill-admin {
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.15s;
  white-space: nowrap;
}
.nav-pill {
  background: var(--surface-soft);
  color: var(--text);
}
.nav-pill:hover { background: var(--blush); color: var(--violet); }

.nav-pill-admin {
  background: var(--violet);
  color: #FFFFFF;
}
.nav-pill-admin:hover { background: var(--violet-hover); }

.nav-pill-ghost {
  border: 1px solid var(--border);
  color: var(--text);
}
.nav-pill-ghost:hover { border-color: var(--violet); color: var(--violet); }

.nav-pill-text {
  color: var(--text-muted);
  padding: 9px 12px;
}
.nav-pill-text:hover { color: var(--violet); }

.nav-pill-primary {
  background: var(--violet);
  color: #FFFFFF;
}
.nav-pill-primary:hover { background: var(--violet-hover); transform: translateY(-1px); }

/* Tablet (1024 and below) — réduire padding */
@media (max-width: 1024px) {
  .nav-container { gap: 16px; padding: 12px 20px; }
  .nav-link, .nav-trigger { padding: 8px 10px; font-size: 13px; }
  .nav-pill, .nav-pill-ghost, .nav-pill-primary, .nav-pill-text, .nav-pill-admin { padding: 8px 14px; font-size: 13px; }
  .nav-pill-text { display: none; } /* hide "Connexion" sur tablet, garde S'inscrire */
}

/* Switch to drawer at 900 */
@media (max-width: 900px) {
  .nav-main { display: none; }
  .nav-actions { display: none; }
}

/* Mobile drawer clean v2 === */
@media (max-width: 900px) {
  .mobile-drawer {
    display: flex !important;
    position: fixed;
    inset: 0;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 88px 24px 32px;
    gap: 0;
    overflow-y: auto;
    background: var(--bg);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 200;
  }
  .mobile-drawer.open { transform: translateX(0); }
  .md-section {
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
  }
  .md-section:last-child { border-bottom: none; }
  .md-section h5 {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 10px;
  }
  .md-section a {
    display: flex;
    align-items: center;
    padding: 13px 0;
    font-size: 16px;
    color: var(--text);
    text-decoration: none;
    font-weight: 400;
    border: none;
    transition: color 0.15s, padding-left 0.15s;
  }
  .md-section a:active,
  .md-section a:hover { color: var(--violet); padding-left: 4px; }
  .md-section a.btn,
  .md-section a.btn-primary,
  .md-section a.btn-ghost {
    padding: 14px; font-weight: 500; margin-top: 10px;
    text-align: center; justify-content: center;
    border-radius: 999px;
  }
  .md-section a.btn-primary { background: var(--violet); color: #FFFFFF; }
  .md-section a.btn-ghost { border: 1px solid var(--border); color: var(--text); }
  .md-section form { display: block; padding: 13px 0; }
  .md-section button.linklike {
    background: none; border: none; font: inherit; cursor: pointer;
    font-size: 16px; color: var(--error); padding: 0; text-align: left;
  }
  .md-footer { margin-top: auto; padding-top: 24px; border-top: none; }
}
.nav-links a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-links form { display: inline; }
.nav-links button.linklike {
  background: none; border: none; cursor: pointer;
  font: inherit; color: var(--text-muted);
  padding: 0;
}
.nav-links button.linklike:hover { color: var(--text); }

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  font-family: inherit;
  transition: all 0.2s;
  border: 1px solid transparent;
  cursor: pointer;
  text-align: center;
}
.btn-primary { background: var(--violet); color: #FFFFFF; }
.btn-primary:hover { background: var(--violet-hover); transform: translateY(-1px); }
.btn-ghost { border-color: var(--border); color: var(--text); background: transparent; }
.btn-ghost:hover { border-color: var(--violet); color: var(--violet); }
.btn-block { display: block; width: 100%; padding: 16px; }
.btn-lg { padding: 16px 32px; font-size: 15px; }

/* TYPO */
h1, h2, h3, h4 { font-weight: 400; word-wrap: break-word; overflow-wrap: anywhere; }
h1 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(40px, 7vw, 88px);
  line-height: 1.04;
  letter-spacing: -0.022em;
  margin-bottom: 20px;
}
h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.accent { color: var(--violet); }

.eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 16px;
}
.eyebrow.muted { color: var(--text-muted); }

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before, .hero::after {
  content: ''; position: absolute; pointer-events: none;
}
.hero::before {
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(176, 115, 130, 0.28) 0%, transparent 70%);
}
.hero::after {
  bottom: -300px; left: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(201, 162, 103, 0.18) 0%, transparent 70%);
}
.hero-content { position: relative; z-index: 1; max-width: 800px; }
.hero p {
  font-size: 20px;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.search-bar {
  margin-top: 64px;
  max-width: 640px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px;
  display: flex;
  gap: 8px;
  align-items: center;
}
.search-bar input {
  flex: 1; background: transparent; border: none;
  color: var(--text); font-family: inherit; font-size: 15px;
  padding: 12px 20px; outline: none;
}
.search-bar input::placeholder { color: var(--text-dim); }

/* SECTIONS */
section.block { padding: 100px 0; position: relative; }
.section-lead {
  font-size: 18px; color: var(--text-muted);
  max-width: 600px; margin-bottom: 64px;
}

/* PAGE HEAD (non-home pages) */
.page-head { padding: 140px 0 48px; }
.page-head h1 {
  font-size: clamp(40px, 6vw, 72px);
  margin-bottom: 16px;
}
.page-head p { color: var(--text-muted); font-size: 18px; max-width: 640px; }

/* ARTISTS GRID */
.artists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
  gap: 20px;
}
@media (max-width: 480px) {
  .artists-grid { gap: 16px; }
}
.artist-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s;
  display: block;
}
.artist-card:hover {
  transform: translateY(-4px);
  border-color: var(--violet);
  box-shadow: 0 10px 30px rgba(176, 115, 130, 0.12);
}
.artist-img {
  aspect-ratio: 1;
  position: relative;
  background-size: cover;
  background-position: center;
  background-color: var(--surface-soft);
  overflow: hidden;
  transition: transform 0.5s ease;
}
.artist-card:hover .artist-img { transform: scale(1.04); }
.artist-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--violet-hover);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
}
.artist-info { padding: 20px; }
.artist-name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  margin-bottom: 4px;
}
.artist-meta {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 16px;
}
.artist-footer {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.artist-price { font-weight: 600; font-size: 16px; }
.artist-rating { font-size: 13px; color: var(--text-muted); }

/* FILTERS */
.filters {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 32px;
  display: grid;
  grid-template-columns: minmax(160px, 2fr) repeat(3, minmax(120px, 1fr)) auto;
  gap: 10px;
  align-items: center;
}
.filters input,
.filters select {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 12px 16px;
  font: inherit;
  font-size: 14px;
  color: var(--text);
  outline: none;
}
.filters input:focus, .filters select:focus { border-color: var(--violet); }
.filters .filters-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.filters input, .filters select { min-width: 0; width: 100%; }
@media (max-width: 768px) {
  .filters { grid-template-columns: 1fr 1fr; padding: 14px; }
  .filters .filters-actions { grid-column: 1 / -1; justify-content: stretch; }
  .filters .filters-actions .btn { flex: 1; }
}
@media (max-width: 420px) {
  .filters { grid-template-columns: 1fr; }
}

.results-count {
  margin-bottom: 24px;
  color: var(--text-muted);
  font-size: 14px;
}

/* ARTIST PROFILE */
.profile-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  margin-bottom: 80px;
}
@media (max-width: 900px) { .profile-grid { grid-template-columns: 1fr; } }

.gallery-main {
  aspect-ratio: 4/5;
  border-radius: 24px;
  background-size: cover; background-position: center;
  background-color: var(--surface-soft);
}
.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 12px;
}
.gallery-thumb {
  aspect-ratio: 1;
  border-radius: 12px;
  background-size: cover; background-position: center;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s;
}
.gallery-thumb:hover, .gallery-thumb.active { border-color: var(--violet); }

.profile-info h1 {
  font-size: clamp(40px, 5vw, 64px);
  margin-bottom: 8px;
}
.profile-meta {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 24px;
}
.profile-rating {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 24px;
  font-size: 15px;
}
.profile-bio {
  color: var(--text-muted); font-size: 16px; margin-bottom: 32px;
}
.services-list {
  list-style: none;
  margin-bottom: 32px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface);
  overflow: hidden;
}
.services-list li {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
}
.services-list li:last-child { border-bottom: none; }
.services-list .svc-name { font-weight: 500; }
.services-list .svc-meta { color: var(--text-dim); font-size: 13px; margin-top: 2px; }
.services-list .svc-price { font-weight: 600; font-size: 18px; }

/* FORMS */
.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px;
  margin: 32px 0;
}
.form-row { margin-bottom: 20px; }
.form-row label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text-muted);
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  font: inherit;
  font-size: 15px;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { border-color: var(--violet); }
.form-row .hint { font-size: 12px; color: var(--text-dim); margin-top: 6px; }

.error-msg, .info-msg {
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 14px;
  margin-bottom: 24px;
}
.error-msg { background: #FCE9E9; color: var(--error); border: 1px solid #F4C5C7; }
.info-msg { background: var(--blush); color: var(--violet-hover); border: 1px solid rgba(176, 115, 130, 0.3); }

.success-card {
  background: var(--blush);
  border: 1px solid var(--violet);
  border-radius: 24px;
  padding: 48px 40px;
  text-align: center;
  margin-bottom: 32px;
}
.success-card .check {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--violet);
  color: #FFF;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  font-size: 28px;
}

/* TIME SLOTS */
.slot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 8px;
  margin-top: 8px;
}
.slot {
  position: relative;
}
.slot input { position: absolute; opacity: 0; pointer-events: none; }
.slot label {
  display: block;
  text-align: center;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg);
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
}
.slot label:hover { border-color: var(--violet); }
.slot input:checked + label {
  background: var(--violet);
  color: #FFF;
  border-color: var(--violet);
}

/* SUMMARY */
.summary {
  background: var(--surface-soft);
  border-radius: 16px;
  padding: 24px;
  margin: 24px 0;
}
.summary-row {
  display: flex; justify-content: space-between;
  padding: 8px 0;
  font-size: 15px;
}
.summary-row.total {
  border-top: 1px solid var(--border);
  margin-top: 8px;
  padding-top: 16px;
  font-weight: 600;
  font-size: 17px;
}

/* BOOKINGS LIST */
.bookings { display: flex; flex-direction: column; gap: 16px; }
.booking-card {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 24px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
}
.booking-thumb {
  width: 100px; height: 100px;
  border-radius: 12px;
  background-size: cover; background-position: center;
}
.booking-info h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 24px;
  margin-bottom: 4px;
}
.booking-info .meta {
  color: var(--text-muted);
  font-size: 14px;
}
.booking-status {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}
.booking-status.confirmed { background: #E6F0EA; color: var(--success); }
.booking-status.cancelled { background: #FCE9E9; color: var(--error); }
.booking-status.pending { background: var(--blush); color: var(--violet-hover); }
.booking-actions { display: flex; gap: 8px; align-items: center; }
@media (max-width: 600px) {
  .booking-card { grid-template-columns: 80px 1fr; }
  .booking-thumb { width: 80px; height: 80px; }
  .booking-actions { grid-column: 1 / -1; }
}

.empty-state {
  text-align: center;
  padding: 80px 24px;
  background: var(--surface);
  border: 1px dashed var(--border);
  border-radius: 24px;
}
.empty-state p { color: var(--text-muted); margin-bottom: 24px; }

/* AUTH */
.auth-page { padding: 140px 0 80px; }
.auth-card {
  max-width: 440px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px;
}
.auth-card h1 { font-size: 40px; margin-bottom: 8px; }
.auth-card p.sub { color: var(--text-muted); margin-bottom: 24px; }
.auth-card .switch { text-align: center; margin-top: 16px; font-size: 14px; color: var(--text-muted); }
.auth-card .switch a { color: var(--violet); font-weight: 500; }

/* STATS */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
}
.stat-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.stat-value {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 48px;
  font-weight: 400;
  line-height: 1;
}
@media (max-width: 768px) {
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-value { font-size: 36px; }
}

/* FILTER TABS */
.filter-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.filter-tab {
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-muted);
  transition: all 0.2s;
}
.filter-tab:hover { border-color: var(--violet); color: var(--text); }
.filter-tab.active {
  background: var(--violet);
  border-color: var(--violet);
  color: #FFFFFF;
}

/* SERVICES BUILDER */
.sb-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 16px; }
.sb-row {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  position: relative;
}
.sb-row-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.sb-num {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--violet);
  color: #FFF;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sb-remove {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  color: var(--text-muted);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.sb-remove:hover { background: var(--error); color: #FFF; border-color: var(--error); }
.sb-grid {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}
.sb-field { display: flex; flex-direction: column; gap: 4px; }
.sb-field label {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}
.sb-field input,
.sb-field select {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 12px;
  font: inherit;
  font-size: 14px;
  color: var(--text);
  outline: none;
}
.sb-field input:focus, .sb-field select:focus { border-color: var(--violet); }
.sb-field.sb-desc input { width: 100%; }
.sb-add {
  width: 100%;
  padding: 14px;
  border: 1px dashed var(--border);
  background: var(--bg);
  color: var(--violet);
  font-weight: 500;
  font-size: 14px;
}
.sb-add:hover { border-color: var(--violet); border-style: solid; background: var(--blush); }
.sb-hint {
  margin-top: 8px;
  font-size: 12px;
  color: var(--text-dim);
  text-align: center;
}
@media (max-width: 768px) {
  .sb-grid { grid-template-columns: 1fr 1fr; }
  .sb-grid .sb-name { grid-column: 1 / -1; }
}

/* SERVICES — public profile (grouped) */
.services-section {
  margin-bottom: 32px;
}
.services-cat {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  margin: 24px 0 12px;
  color: var(--violet);
}
.services-list-grouped li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 16px 24px;
  gap: 16px;
}
.services-list-grouped .svc-info { flex: 1; }
.services-list-grouped .svc-name { font-weight: 500; margin-bottom: 4px; }
.services-list-grouped .svc-desc {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.4;
  margin-top: 2px;
}
.services-list-grouped .svc-meta { color: var(--text-dim); font-size: 12px; margin-top: 4px; }
.services-list-grouped .svc-price-col { text-align: right; flex-shrink: 0; }
.services-list-grouped .svc-price { font-weight: 600; font-size: 18px; }

/* PHOTO PICKER */
[data-photo-picker] {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 12px;
}
.pp-preview {
  aspect-ratio: 4/3;
  background: var(--surface-soft);
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 2px dashed var(--border);
  transition: border-color 0.2s;
}
.pp-preview.has-image { border-style: solid; border-color: var(--violet); }
.pp-placeholder {
  color: var(--text-dim);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.pp-remove {
  position: absolute;
  top: 8px; right: 8px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--border);
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  color: var(--text);
  z-index: 1;
  display: flex; align-items: center; justify-content: center;
}
.pp-remove:hover { background: var(--error); color: #FFF; border-color: var(--error); }
.pp-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.pp-tab {
  background: none;
  border: none;
  padding: 10px 14px;
  font-size: 13px;
  font-family: inherit;
  color: var(--text-muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all 0.2s;
}
.pp-tab:hover { color: var(--text); }
.pp-tab.active {
  color: var(--violet);
  border-bottom-color: var(--violet);
  font-weight: 500;
}
.pp-panel { display: none; }
.pp-panel.active { display: block; }
.pp-panel input[type=url],
.pp-panel input[type=text] {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 16px;
  font: inherit;
  font-size: 14px;
  color: var(--text);
  outline: none;
}
.pp-panel input:focus { border-color: var(--violet); }
.pp-panel .btn { padding: 10px 18px; font-size: 13px; }
.pp-hint {
  margin-top: 8px;
  font-size: 12px;
  color: var(--text-dim);
}
.pp-status { margin-top: 10px; font-size: 13px; }
.pp-status.loading { color: var(--violet); }
.pp-status.error { color: var(--error); }

/* HERO SLIDER */
.hero-slider {
  position: relative;
  width: 100%;
  height: 90vh;
  min-height: 600px;
  margin-top: 0;
  overflow: hidden;
  background: var(--surface-soft);
}
.hero-slider .slides { position: relative; width: 100%; height: 100%; }
.hero-slider .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  display: flex;
  align-items: center;
}
.hero-slider .slide.active { opacity: 1; }
.hero-slider .slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}
.hero-slider .slide.active .slide-bg { transform: scale(1.15); }
.hero-slider .slide-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(45,31,26,0.20) 0%, rgba(45,31,26,0.45) 60%, rgba(45,31,26,0.78) 100%),
    linear-gradient(90deg, rgba(45,31,26,0.65) 0%, transparent 55%);
}
.hero-slider .slide-content {
  position: relative;
  z-index: 2;
  padding: 0 80px;
  max-width: 720px;
  color: #FFFFFF;
}
.hero-slider .slide-content .eyebrow {
  color: #FFFFFF;
  opacity: 0.85;
  font-size: 11px;
  margin-bottom: 20px;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.8s ease 0.2s;
}
.hero-slider .slide-content h2 {
  color: #FFFFFF;
  font-size: clamp(56px, 9vw, 112px);
  font-weight: 300;
  margin-bottom: 24px;
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.9s ease 0.3s;
}
.hero-slider .slide-content p {
  font-size: 19px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 480px;
  margin-bottom: 32px;
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.9s ease 0.45s;
}
.hero-slider .slide-content .btn {
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.9s ease 0.6s, background 0.2s;
}
.hero-slider .slide.active .slide-content .eyebrow,
.hero-slider .slide.active .slide-content h2,
.hero-slider .slide.active .slide-content p,
.hero-slider .slide.active .slide-content .btn {
  transform: translateY(0);
  opacity: 1;
}
.hero-slider .slide.active .slide-content .eyebrow { opacity: 0.85; }
.hero-slider .slide.active .slide-content p { opacity: 0.85; }
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
  cursor: pointer;
  z-index: 10;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
  font-size: 20px;
}
.slider-arrow:hover { background: rgba(255, 255, 255, 0.95); color: var(--violet); }
.slider-arrow.prev { left: 32px; }
.slider-arrow.next { right: 32px; }
.slider-dots {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}
.slider-dot.active { width: 32px; border-radius: 4px; background: #FFFFFF; }
.slider-search {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  width: 90%;
  max-width: 580px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 999px;
  padding: 8px;
  display: flex;
  gap: 8px;
}
.slider-search input {
  flex: 1; background: transparent; border: none;
  font: inherit; color: var(--text); font-size: 15px;
  padding: 12px 20px; outline: none;
}
@media (max-width: 768px) {
  .hero-slider { height: 85vh; min-height: 520px; }
  .hero-slider .slide-content { padding: 0 24px; }
  .slider-arrow { width: 44px; height: 44px; font-size: 18px; }
  .slider-arrow.prev { left: 12px; }
  .slider-arrow.next { right: 12px; }
  .slider-search { bottom: 100px; padding: 6px; }
  .slider-search input { padding: 10px 14px; font-size: 14px; }
}

/* CAROUSEL — scroll horizontal premium, anti-débordement */
.carousel-wrap { position: relative; overflow: hidden; }
.carousel-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 8px 4px 24px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-track .artist-card {
  flex: 0 0 300px;
  scroll-snap-align: start;
  min-width: 0;
}
.carousel-arrow {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  cursor: pointer;
  z-index: 5;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(45, 31, 26, 0.08);
}
.carousel-arrow:hover { background: var(--violet); color: #FFFFFF; border-color: var(--violet); }
.carousel-arrow.prev { left: -8px; }
.carousel-arrow.next { right: -8px; }
@media (max-width: 900px) {
  .carousel-arrow { display: none; }
  .carousel-track .artist-card { flex: 0 0 78vw; max-width: 320px; }
  .carousel-track { gap: 16px; padding: 8px 16px 24px; }
}

/* TRUST STRIP (replaced marquee) */
.trust-strip {
  padding: 56px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  align-items: center;
}
.trust-item {
  text-align: center;
  position: relative;
}
.trust-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -16px;
  top: 25%;
  height: 50%;
  width: 1px;
  background: var(--border);
}
.trust-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 56px;
  font-weight: 400;
  line-height: 1;
  color: var(--violet);
  margin-bottom: 8px;
}
.trust-label {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}
@media (max-width: 768px) {
  .trust-strip { padding: 40px 0; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .trust-item:nth-child(2)::after { display: none; }
  .trust-num { font-size: 40px; }
}

/* SCROLL REVEAL — progressive enhancement (only hides if JS marks .js-reveal) */
.js-reveal [data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.js-reveal [data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}
.js-reveal [data-reveal-delay="1"].revealed { transition-delay: 0.1s; }
.js-reveal [data-reveal-delay="2"].revealed { transition-delay: 0.2s; }
.js-reveal [data-reveal-delay="3"].revealed { transition-delay: 0.3s; }

/* NAV scrolled state */
nav.site-nav { transition: padding 0.3s ease, background 0.3s ease, box-shadow 0.3s ease; }
nav.site-nav.scrolled {
  padding: 14px 0;
  background: rgba(250, 244, 238, 0.95);
  box-shadow: 0 2px 20px rgba(45, 31, 26, 0.06);
}

/* PARALLAX ORBS */
[data-parallax] { will-change: transform; }

/* HOW IT WORKS */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  counter-reset: step;
}
.step {
  counter-increment: step;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.step::before {
  content: '0' counter(step);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 64px;
  color: var(--violet);
  line-height: 1;
  margin-bottom: 16px;
  display: block;
}
.step h4 {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 8px;
}
.step p { color: var(--text-muted); font-size: 15px; }
@media (max-width: 768px) { .steps { grid-template-columns: 1fr; gap: 40px; } }

/* FAVORITE BUTTON */
.fav-btn {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.92); border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.2s;
  font-size: 18px; color: var(--text-dim);
  backdrop-filter: blur(8px);
}
.fav-btn:hover { transform: scale(1.1); color: var(--violet); }
.fav-btn.favorited { color: var(--violet); }
.fav-btn.favorited svg { fill: var(--violet); }
.fav-btn svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; }

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  max-width: 560px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: 0 10px 40px rgba(45, 31, 26, 0.15);
  z-index: 9999;
  animation: cookieSlideUp 0.4s ease;
}
@keyframes cookieSlideUp { from { transform: translateY(100%); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.cookie-banner-out { animation: cookieSlideDown 0.3s ease forwards; }
@keyframes cookieSlideDown { to { transform: translateY(120%); opacity: 0; } }
.cookie-content { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.cookie-text { flex: 1; font-size: 13px; line-height: 1.5; min-width: 240px; }
.cookie-text strong { display: block; margin-bottom: 4px; }
.cookie-text span { color: var(--text-muted); }
.cookie-text a { color: var(--violet); text-decoration: underline; }
.cookie-ok {
  background: var(--violet); color: #FFF; border: none;
  padding: 10px 20px; border-radius: 999px;
  font-family: inherit; font-size: 14px; font-weight: 500;
  cursor: pointer; white-space: nowrap;
}
.cookie-ok:hover { background: var(--violet-hover); }
@media (max-width: 500px) {
  .cookie-banner { left: 8px; right: 8px; padding: 14px; }
  .cookie-content { flex-direction: column; align-items: stretch; }
  .cookie-ok { width: 100%; }
}

/* BREADCRUMBS */
.breadcrumbs {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  font-size: 13px;
}
.breadcrumbs ol {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.breadcrumbs li { display: inline-flex; align-items: center; gap: 8px; }
.breadcrumbs a { color: var(--text-muted); text-decoration: none; }
.breadcrumbs a:hover { color: var(--violet); }
.breadcrumbs span[aria-current] { color: var(--text); font-weight: 500; }
.breadcrumbs span[aria-hidden] { color: var(--text-dim); }

/* LEGAL */
.legal-text { padding-bottom: 60px; }
.legal-text h2 {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 18px;
  margin: 28px 0 12px;
}
.legal-text p, .legal-text li { color: var(--text-muted); margin-bottom: 8px; }
.legal-text ul { padding-left: 24px; margin-bottom: 16px; }
.legal-text a { color: var(--violet); text-decoration: underline; }

/* FOOTER */
footer.site-footer {
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
  margin-top: 80px;
  color: var(--text-dim);
  font-size: 13px;
}
footer.site-footer .container {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 24px;
}
footer.site-footer .links { display: flex; flex-wrap: wrap; gap: 16px 24px; max-width: 100%; }
footer.site-footer .links a { color: var(--text-muted); transition: color .15s; }
footer.site-footer .links a:hover { color: var(--text); }
@media (max-width: 720px) {
  footer.site-footer .container { flex-direction: column; align-items: flex-start; text-align: left; }
  footer.site-footer .links { gap: 12px 20px; font-size: 13px; }
  footer.site-footer { padding: 40px 0 28px; margin-top: 56px; }
}

/* === RESPONSIVE === */

/* Burger button */
.burger {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
  z-index: 250;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease;
}
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Tablet (1024 and below): tighten paddings, narrow profile grid */
@media (max-width: 1024px) {
  .container { padding: 0 20px; }
  section.block { padding: 80px 0; }
  .hero-slider .slide-content { padding: 0 48px; }
  .filters { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
  .filters .filters-actions { grid-column: 1 / -1; justify-content: flex-end; }
  .profile-grid { gap: 32px; }
  .carousel-arrow.prev { left: 8px; }
  .carousel-arrow.next { right: 8px; }
}

/* Mobile (900 and below) — nav switches to drawer */
@media (max-width: 900px) {
  /* Nav as side drawer */
  .burger { display: flex; }
  .nav-links-desktop { display: none; }
}

/* Mobile (768 and below) */
@media (max-width: 768px) {
  /* legacy compat */
  .burger { display: flex; }
  .nav-links-desktop { display: none; }
  .mobile-drawer {
    display: flex;
    position: fixed;
    inset: 0;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    background: var(--bg);
    padding: 80px 32px 32px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 200;
  }
  .mobile-drawer.open { transform: translateX(0); }
  .mobile-drawer a, .mobile-drawer button.linklike, .mobile-drawer form {
    display: block;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
    font-size: 18px;
    color: var(--text);
    text-align: left;
    width: 100%;
    background: none;
    border-left: none;
    border-right: none;
    border-top: none;
  }
  .mobile-drawer button.linklike { font-size: 18px; cursor: pointer; }
  .mobile-drawer a.btn {
    margin-top: 24px;
    border-radius: 999px;
    text-align: center;
    border: none;
    padding: 16px;
    background: var(--violet);
    color: #FFFFFF;
  }

  /* Hero slider mobile */
  .hero-slider { height: 80vh; min-height: 580px; }
  .hero-slider .slide { padding: 24px; align-items: flex-end; }
  .hero-slider .slide-content { padding: 80px 0 100px 0; max-width: 100%; }
  .hero-slider .slide-content h2 { font-size: clamp(48px, 13vw, 84px); margin-bottom: 16px; }
  .hero-slider .slide-content p { font-size: 16px; margin-bottom: 24px; }
  .hero-slider .slide-content .btn { padding: 14px 24px; font-size: 14px; }
  .slider-arrow { width: 40px; height: 40px; font-size: 16px; top: 40%; }
  .slider-arrow.prev { left: 12px; }
  .slider-arrow.next { right: 12px; }
  .slider-dots { bottom: 20px; }
  .slider-search {
    bottom: 60px;
    width: calc(100% - 32px);
    padding: 6px;
    flex-wrap: nowrap;
  }
  .slider-search input { padding: 10px 14px; font-size: 14px; min-width: 0; }
  .slider-search .btn { padding: 10px 16px; font-size: 13px; white-space: nowrap; }

  /* Marquee smaller */
  .marquee-track { font-size: 24px; gap: 40px; }
  .marquee-track span { gap: 40px; }

  /* Page heads tighter */
  .page-head { padding: 110px 0 32px; }
  .page-head h1 { font-size: clamp(36px, 9vw, 56px); }
  .page-head p { font-size: 16px; }
  .hero { padding: 110px 0 60px; min-height: auto; }
  .hero p { font-size: 17px; margin-bottom: 28px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .search-bar { margin-top: 32px; flex-direction: column; padding: 12px; border-radius: 24px; }
  .search-bar input { padding: 10px 14px; }
  .search-bar .btn { width: 100%; }

  /* Filters mobile */
  .filters { grid-template-columns: 1fr 1fr; gap: 8px; padding: 16px; }
  .filters input, .filters select { padding: 10px 14px; font-size: 13px; }
  .filters input[name="q"] { grid-column: 1 / -1; }
  .filters .filters-actions { grid-column: 1 / -1; justify-content: stretch; }
  .filters .filters-actions .btn { flex: 1; }

  /* Cards: 2 cols on tablet, 1 on phone */
  .artists-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  /* Profile mobile */
  .profile-grid { gap: 24px; margin-bottom: 48px; }
  .gallery-main { aspect-ratio: 1; border-radius: 16px; }
  .gallery-thumbs { grid-template-columns: repeat(4, 1fr); gap: 8px; }
  .profile-info h1 { font-size: clamp(36px, 9vw, 56px); }
  .services-list li { padding: 14px 18px; }

  /* Forms */
  .form-card { padding: 24px 20px; border-radius: 16px; }
  .auth-card { padding: 32px 24px; border-radius: 16px; }
  .auth-page { padding: 110px 0 60px; }
  .form-row input, .form-row select, .form-row textarea { padding: 12px 14px; font-size: 14px; }

  /* Slot grid */
  .slot-grid { grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .slot label { padding: 10px 6px; font-size: 13px; }

  /* Booking summary */
  .summary { padding: 18px; }
  .summary-row { font-size: 14px; }

  /* Confirmation success card */
  .success-card { padding: 32px 24px; }
  .success-card h1 { font-size: clamp(32px, 8vw, 48px); }

  /* Footer stack */
  footer.site-footer { padding: 32px 0 24px; margin-top: 48px; }
  footer.site-footer .container {
    flex-direction: column; align-items: flex-start; gap: 16px;
  }
  footer.site-footer .links { flex-wrap: wrap; gap: 16px 20px; }

  /* Bookings card */
  .booking-card { padding: 12px; gap: 12px; }
  .booking-info h3 { font-size: 20px; }
  .booking-info .meta { font-size: 13px; }

  /* Carousel mobile */
  .carousel-track { padding: 8px 16px 16px; gap: 16px; }
  .carousel-track .artist-card { flex: 0 0 80vw; }
}

/* Tiny mobile (480 and below) */
@media (max-width: 480px) {
  .artists-grid { grid-template-columns: 1fr; }
  .container, .container-sm { padding: 0 16px; }
  h1 { font-size: clamp(40px, 11vw, 56px); }
  h2 { font-size: clamp(32px, 8vw, 44px); }
  .hero-slider .slide-content h2 { font-size: clamp(40px, 12vw, 64px); }
  .hero-slider { height: 85vh; min-height: 560px; }
  .marquee-track { font-size: 20px; }
  .step::before { font-size: 48px; }
  .booking-card { grid-template-columns: 64px 1fr; gap: 10px; }
  .booking-thumb { width: 64px; height: 64px; }
  .booking-actions { grid-column: 1 / -1; flex-wrap: wrap; }
  .gallery-thumbs { gap: 6px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .marquee-track { animation: none; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* =========================================================
 * MODERNIZATION v1 — additive only, no override of existing
 * View Transitions API + smooth animations + micro-interactions
 * ========================================================= */
@view-transition { navigation: auto; }

/* Default cross-fade for old → new page */
@media (prefers-reduced-motion: no-preference) {
  ::view-transition-old(root),
  ::view-transition-new(root) {
    animation-duration: 0.25s;
    animation-timing-function: cubic-bezier(.4,0,.2,1);
  }
  ::view-transition-old(root) { animation-name: nail-fade-out; }
  ::view-transition-new(root) { animation-name: nail-fade-in; }
}
@keyframes nail-fade-out { to { opacity: 0; transform: translateY(-8px); } }
@keyframes nail-fade-in  { from { opacity: 0; transform: translateY(8px); } }

/* Smooth scrolling fallback for browsers without VT */
html { scroll-behavior: smooth; }

/* Micro-interactions : hover lift sur cards */
@media (prefers-reduced-motion: no-preference) {
  .artist-card, .booking-card, .form-card {
    transition: transform .2s cubic-bezier(.4,0,.2,1), box-shadow .2s;
  }
  .artist-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
  }
}

/* Buttons : press feedback */
.btn:active { transform: scale(0.97); }

/* Form inputs : focus ring violet harmonisé */
input:focus, textarea:focus, select:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(123,63,242,0.22);
}

/* Skeleton loader */
.skeleton {
  background: linear-gradient(90deg, rgba(0,0,0,0.05) 25%, rgba(0,0,0,0.10) 50%, rgba(0,0,0,0.05) 75%);
  background-size: 200% 100%;
  animation: skeleton-pulse 1.4s ease infinite;
  border-radius: 12px;
}
@keyframes skeleton-pulse {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.skeleton-card {
  border-radius: 18px;
  overflow: hidden;
  background: var(--surface, #fff);
  border: 1px solid var(--border, #eee);
}
.skeleton-img { aspect-ratio: 4/3; }
.skeleton-line { height: 14px; margin: 8px 12px; }
.skeleton-line.short { width: 60%; }
.skeleton-line.medium { width: 80%; }

/* Lazy image fade-in once loaded (when img has loading="lazy" + .lazy class) */
img.lazy { opacity: 0; transition: opacity 0.4s ease; }
img.lazy.loaded { opacity: 1; }

/* Reduce motion respect */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}
