/* ============================================================
   Esthélia — Design system tokens + global styles
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  /* Palette */
  --bg:          oklch(0.975 0.008 35);
  --bg-elev:     #fffaf5;
  --bg-sunken:   oklch(0.955 0.012 35);
  --ink:         oklch(0.22 0.020 25);
  --ink-2:       oklch(0.42 0.018 25);
  --ink-3:       oklch(0.60 0.014 25);
  --line:        oklch(0.91 0.014 35);
  --line-2:      oklch(0.85 0.016 35);
  --accent:      oklch(0.62 0.10 25);
  --accent-ink:  oklch(0.36 0.09 25);
  --accent-soft: oklch(0.95 0.04 25);
  --good:        oklch(0.50 0.08 155);
  --good-soft:   oklch(0.95 0.04 155);
  --warm:        oklch(0.62 0.10 60);
  --warm-soft:   oklch(0.95 0.04 60);
  --warm-ink:    oklch(0.40 0.08 60);

  /* Shape */
  --radius:    10px;
  --radius-sm: 6px;
  --radius-lg: 16px;
  --shadow:    0 1px 2px rgba(40,20,20,.04), 0 4px 14px -8px rgba(40,20,20,.10);
  --shadow-md: 0 4px 6px rgba(40,20,20,.05), 0 12px 28px -10px rgba(40,20,20,.14);

  /* Type */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', system-ui, -apple-system, sans-serif;
  --font-mono:  'JetBrains Mono', 'Fira Code', monospace;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: oklch(0.94 0.012 35);
  color: var(--ink);
  font-feature-settings: "ss01","cv11";
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }
ul { list-style: none; }

/* Container */
.container { max-width: 1152px; margin-inline: auto; padding-inline: 64px; }
@media (max-width: 768px) { .container { padding-inline: 20px; } }

/* ============================================================
   LOGO
   ============================================================ */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.005em;
  color: inherit;
  text-decoration: none;
}
.logo svg { flex-shrink: 0; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 36px;
  border-bottom: 1px solid var(--line);
  background: var(--bg-elev);
  position: sticky;
  top: 0;
  z-index: 100;
}
.navbar--dark {
  background: transparent;
  border-bottom-color: rgba(255,250,245,.10);
  color: #fffaf5;
}
.navbar__left { display: flex; align-items: center; gap: 36px; }
.navbar__nav  { display: flex; gap: 26px; font-size: 14px; color: var(--ink-2); }
.navbar--dark .navbar__nav { color: rgba(255,250,245,.75); }
.navbar__nav a:hover { color: var(--ink); }
.navbar--dark .navbar__nav a:hover { color: #fffaf5; }
.navbar__right { display: flex; gap: 8px; align-items: center; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 500;
  border-radius: var(--radius-sm);
  letter-spacing: -0.005em;
  transition: opacity .12s, transform .08s;
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn:hover { opacity: .88; }
.btn:active { transform: scale(.98); }

.btn--sm  { padding: 6px 12px;  font-size: 13px; height: 32px; }
.btn--md  { padding: 9px 16px;  font-size: 14px; height: 40px; }
.btn--lg  { padding: 14px 22px; font-size: 15px; height: 50px; }

.btn--primary   { background: var(--accent);    color: #fffaf5;         border-color: var(--accent); }
.btn--secondary { background: var(--bg-elev);   color: var(--ink);      border-color: var(--line-2); }
.btn--ghost     { background: transparent;       color: var(--ink-2);    border-color: transparent; }
.btn--dark      { background: var(--ink);        color: #fffaf5;         border-color: var(--ink); }
.btn--soft      { background: var(--accent-soft);color: var(--accent-ink);border-color: transparent; }
.btn--outline-light { background: rgba(255,250,245,.08); color: rgba(255,250,245,.9); border-color: rgba(255,250,245,.2); }

/* ============================================================
   PILLS & CHIPS
   ============================================================ */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
}
.pill--default { background: var(--bg-sunken); color: var(--ink-2);      border-color: var(--line); }
.pill--accent  { background: var(--accent-soft);color: var(--accent-ink); }
.pill--good    { background: var(--good-soft);  color: var(--good); }
.pill--warm    { background: var(--warm-soft);  color: var(--warm-ink); }

.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-family: inherit;
  cursor: pointer;
  border: 1px solid var(--line-2);
  background: var(--bg-elev);
  color: var(--ink-2);
  transition: background .1s, color .1s;
}
.filter-chip.active {
  background: var(--accent-soft);
  border-color: transparent;
  color: var(--accent-ink);
}

/* ============================================================
   TRUST BADGES
   ============================================================ */
.badge-verified {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--good);
  font-size: 12px;
  font-weight: 500;
}
.badge-sofcpre {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--accent-ink);
  font-size: 12px;
  font-weight: 500;
}

/* ============================================================
   STARS
   ============================================================ */
.stars {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--ink-2);
}
.stars__icons { display: inline-flex; gap: 1px; }
.stars__val   { font-family: var(--font-mono); font-size: 11px; }
.stars__count { color: var(--ink-3); font-size: 11px; }

/* ============================================================
   SEARCH BAR
   ============================================================ */
.search-bar {
  display: flex;
  align-items: stretch;
  background: var(--bg-elev);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  padding: 4px;
  gap: 4px;
  box-shadow: var(--shadow);
}
.search-bar--dark {
  background: rgba(255,250,245,.06);
  border-color: rgba(255,250,245,.16);
  box-shadow: none;
}
.search-bar__field {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  flex: 1;
}
.search-bar__field input,
.search-bar__field span {
  border: none;
  outline: none;
  background: transparent;
  font-size: 17px;
  font-family: inherit;
  color: var(--ink);
  padding: 18px 0;
  flex: 1;
  min-width: 0;
}
.search-bar--dark .search-bar__field input,
.search-bar--dark .search-bar__field span { color: #fffaf5; }
.search-bar__divider { width: 1px; background: var(--line); }
.search-bar--dark .search-bar__divider { background: rgba(255,250,245,.14); }
.search-bar__field--specialty { flex: 0.85; }
.search-bar__caret { flex-shrink: 0; }
.search-bar__btn {
  background: var(--accent);
  color: #fffaf5;
  border: none;
  border-radius: 7px;
  padding: 0 26px;
  font-weight: 500;
  font-size: 15px;
  font-family: inherit;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition: opacity .12s;
}
.search-bar__btn:hover { opacity: .9; }

/* ============================================================
   HOME — HERO SPLIT (dark)
   ============================================================ */
.hero-split {
  background: var(--ink);
  color: #fffaf5;
  margin-top: -69px; /* pull up behind the sticky navbar so dark bg shows through */
}
.hero-split .navbar {
  background: transparent;
  border-bottom-color: rgba(255,250,245,.10);
  color: #fffaf5;
  position: relative;
}
.hero-split__body {
  padding: calc(88px + 69px) 64px 110px;
  max-width: 1152px;
  margin-inline: auto;
}
.hero-split__eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255,250,245,.5);
  letter-spacing: .1em;
  margin-bottom: 36px;
}
.hero-split__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(64px, 8vw, 104px);
  line-height: .96;
  letter-spacing: -0.025em;
  margin: 0 0 52px;
  color: #fffaf5;
}
.hero-split__title em { font-style: italic; }
.hero-split__searchbar { max-width: 720px; margin-bottom: 24px; }
.hero-split__quick-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 22px;
  font-size: 13px;
}
.hero-split__quick-links span { color: rgba(255,250,245,.45); }
.hero-split__quick-links a {
  color: rgba(255,250,245,.65);
  cursor: pointer;
  text-decoration: none;
  transition: color .1s;
}
.hero-split__quick-links a:hover { color: #fffaf5; }
.hero-split__stats {
  display: flex;
  gap: 56px;
  margin-top: 64px;
  font-size: 14px;
  color: rgba(255,250,245,.7);
  flex-wrap: wrap;
}
.hero-split__stat-num {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 44px);
  color: #fffaf5;
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}

/* ============================================================
   HOME — HOW IT WORKS
   ============================================================ */
.how-it-works {
  padding: 88px 64px;
  background: var(--bg);
}
.how-it-works__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin-inline: auto;
}
.how-card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
}
.how-card__num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent);
  margin-bottom: 16px;
  letter-spacing: .06em;
}
.how-card__title {
  font-family: var(--font-serif);
  font-size: 30px;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.how-card__desc { color: var(--ink-2); font-size: 14px; line-height: 1.6; }

/* ============================================================
   HOME — SPECIALTIES
   ============================================================ */
.specialties-section {
  padding: 60px 64px 80px;
  background: var(--bg);
}
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 32px;
  max-width: 1100px;
  margin-inline: auto;
  margin-bottom: 32px;
}
.section-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(32px, 3.5vw, 44px);
  letter-spacing: -0.02em;
}
.section-link { font-size: 14px; color: var(--accent-ink); cursor: pointer; }
.section-link:hover { text-decoration: underline; }
.specialties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin-inline: auto;
}
.specialty-card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: border-color .15s, box-shadow .15s;
}
.specialty-card:hover {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.specialty-card__name {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.01em;
}
.specialty-card__desc { color: var(--ink-2); font-size: 13px; line-height: 1.5; }
.specialty-card__count {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-3);
  margin-top: 4px;
  letter-spacing: .04em;
}

/* ============================================================
   HOME — TRUST SECTION
   ============================================================ */
.trust-section {
  padding: 70px 64px;
  background: var(--accent-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-section__inner {
  max-width: 1100px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.trust-section__eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent-ink);
  letter-spacing: .12em;
  margin-bottom: 16px;
}
.trust-section__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 44px;
  margin: 0 0 18px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.trust-section__body { font-size: 16px; color: var(--ink-2); line-height: 1.6; }
.trust-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.trust-card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 16px;
}
.trust-card__icon { font-size: 18px; color: var(--accent); margin-bottom: 8px; }
.trust-card__title { font-weight: 500; font-size: 14px; }
.trust-card__sub { color: var(--ink-3); font-size: 12px; margin-top: 2px; }

/* ============================================================
   HOME — REGIONS
   ============================================================ */
.regions-section {
  padding: 70px 64px;
  background: var(--bg);
}
.regions-section__inner { max-width: 1100px; margin-inline: auto; }
.regions-section__subtitle { color: var(--ink-2); margin: 0 0 32px; }
.regions-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.region-row {
  padding: 14px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  cursor: pointer;
  transition: background .1s;
}
.region-row:hover { background: var(--accent-soft); }
.region-row:nth-child(even) { border-right: none; }
.region-row:nth-last-child(-n+2) { border-bottom: none; }
.region-row__name { font-size: 14px; }
.region-row__meta { font-family: var(--font-mono); font-size: 12px; color: var(--ink-3); }

/* ============================================================
   HOME — ARTICLES TEASER
   ============================================================ */
.articles-section {
  padding: 80px 64px;
  background: var(--bg-sunken);
  border-top: 1px solid var(--line);
}
.articles-section__inner { max-width: 1100px; margin-inline: auto; }
.articles-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 32px;
}
.articles-header__sub { color: var(--ink-2); margin-top: 6px; font-size: 15px; }
.articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.article-card { display: flex; flex-direction: column; gap: 14px; cursor: pointer; }
.article-card__img {
  aspect-ratio: 16/10;
  background: repeating-linear-gradient(135deg, oklch(0.93 0.018 35), oklch(0.93 0.018 35) 8px, oklch(0.91 0.022 35) 8px, oklch(0.91 0.022 35) 16px);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}
.article-card__tag {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent-ink);
  letter-spacing: .05em;
}
.article-card__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: rgba(255,250,245,.7);
  padding: 64px 64px 40px;
}
.site-footer__inner {
  max-width: 1100px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.site-footer__brand-desc { font-size: 14px; margin-top: 18px; max-width: 320px; line-height: 1.6; }
.site-footer__col-title { color: #fffaf5; font-weight: 500; margin-bottom: 14px; font-size: 14px; }
.site-footer__links { display: flex; flex-direction: column; gap: 8px; font-size: 13px; }
.site-footer__links a:hover { color: #fffaf5; }
.site-footer__bottom {
  max-width: 1100px;
  margin: 60px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,250,245,.1);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
}
.site-footer__version { font-family: var(--font-mono); }

/* ============================================================
   SURGEON CARD (results list)
   ============================================================ */
.surgeon-card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  display: flex;
  gap: 16px;
  cursor: pointer;
  transition: border-color .15s, box-shadow .15s;
}
.surgeon-card:hover,
.surgeon-card.active {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.surgeon-card__avatar {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  flex-shrink: 0;
}
.surgeon-card__body { flex: 1; min-width: 0; }
.surgeon-card__header { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.surgeon-card__name { font-weight: 600; font-size: 15.5px; letter-spacing: -0.005em; }
.surgeon-card__distance { font-family: var(--font-mono); font-size: 12px; color: var(--ink-3); flex-shrink: 0; }
.surgeon-card__meta { color: var(--ink-2); font-size: 13px; margin-top: 2px; }
.surgeon-card__rating { margin-top: 8px; }
.surgeon-card__pills { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 10px; }
.surgeon-card__footer { display: flex; justify-content: space-between; align-items: center; margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--line); }
.surgeon-card__badges { display: flex; gap: 10px; flex-wrap: wrap; }

/* ============================================================
   ANNUAIRE — page résultats
   ============================================================ */
.annuaire-topbar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 32px;
  border-bottom: 1px solid var(--line);
  background: var(--bg-elev);
  flex-wrap: wrap;
  position: sticky;
  top: 69px;   /* hauteur navbar */
  z-index: 90;
}
.annuaire-topbar__search { flex: 1; min-width: 280px; max-width: 560px; }
.annuaire-topbar__filters { display: flex; gap: 8px; flex-wrap: wrap; }

.annuaire-split {
  display: grid;
  grid-template-columns: 420px 1fr;
  height: calc(100vh - 130px);
}
.annuaire-list {
  overflow-y: auto;
  border-right: 1px solid var(--line);
  background: var(--bg);
  display: flex;
  flex-direction: column;
}
.annuaire-list__header {
  padding: 18px 28px 8px;
  flex-shrink: 0;
}
.annuaire-list__title {
  font-family: var(--font-serif);
  font-size: 26px;
  letter-spacing: -0.01em;
  font-weight: 500;
}
.annuaire-list__sub { color: var(--ink-3); font-size: 13px; margin-top: 2px; }
.annuaire-list__cards { padding: 8px 20px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }

.annuaire-empty { padding: 40px 20px; text-align: center; color: var(--ink-2); display: flex; flex-direction: column; align-items: center; gap: 16px; }

.annuaire-pagination {
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  flex-shrink: 0;
}
.annuaire-pagination__info { font-size: 13px; color: var(--ink-3); }

.annuaire-map { position: sticky; top: 130px; height: calc(100vh - 130px); }
/* Override Leaflet z-index conflict */
.annuaire-map .leaflet-pane { z-index: 1 !important; }
.annuaire-map .leaflet-top,
.annuaire-map .leaflet-bottom { z-index: 2 !important; }

/* Surgeon card actions */
.surgeon-card__actions { display: flex; gap: 6px; }
.surgeon-card { cursor: pointer; }

/* ============================================================
   PROFIL PRATICIEN
   ============================================================ */
.profile-page { background: var(--bg); min-height: 100vh; }

.profile-breadcrumb {
  padding: 12px 64px;
  font-size: 12px;
  color: var(--ink-3);
  background: var(--bg-elev);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
.profile-breadcrumb a { color: var(--ink-2); }
.profile-breadcrumb a:hover { color: var(--ink); }
.profile-breadcrumb span { color: var(--ink-3); }

.profile-header {
  background: var(--bg-elev);
  border-bottom: 1px solid var(--line);
  padding: 40px 64px 32px;
}
.profile-header__inner {
  max-width: 1100px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: start;
}
.profile-header__left { display: flex; gap: 24px; }
.profile-header__avatar {
  width: 100px;
  height: 100px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 500;
  flex-shrink: 0;
}
.profile-header__badges { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 10px; }
.profile-header__name {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}
.profile-header__sub { color: var(--ink-2); font-size: 15px; margin-bottom: 10px; }
.profile-header__stars { margin-top: 4px; }
.profile-header__cta { display: flex; flex-direction: column; gap: 8px; min-width: 240px; }

.profile-body {
  max-width: 1100px;
  margin-inline: auto;
  padding: 44px 64px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: start;
}

/* Sections */
.profile-section { margin-bottom: 40px; }
.profile-section__title-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 14px;
}
.profile-section__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 30px;
  letter-spacing: -0.01em;
  margin: 0 0 14px;
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.profile-section__title-row .profile-section__title { margin-bottom: 0; }
.profile-section__subtitle { font-size: 12px; color: var(--ink-3); font-family: var(--font-sans); font-weight: 400; }
.profile-section__desc { font-size: 14px; color: var(--ink-2); margin: 0 0 16px; line-height: 1.6; }
.profile-section__pills { display: flex; flex-wrap: wrap; gap: 6px; }

/* Avant / après — photo placeholders */
.profile-photos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.profile-photo-placeholder {
  aspect-ratio: 1 / 1;
  background: repeating-linear-gradient(135deg, oklch(0.93 0.018 35), oklch(0.93 0.018 35) 8px, oklch(0.91 0.022 35) 8px, oklch(0.91 0.022 35) 16px);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-3);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
  padding: 12px;
}

/* Tarifs — rows dans profile-info-card */
.profile-tarif__desc { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.profile-tarif__name { font-weight: 500; font-size: 14px; }
.profile-tarif__sub  { color: var(--ink-3); font-size: 12px; }
.profile-tarif__price { font-family: var(--font-mono); font-size: 13px; color: var(--ink-2); white-space: nowrap; flex-shrink: 0; }
.profile-info-card__row--note {
  font-size: 12px;
  color: var(--ink-3);
  font-style: italic;
  background: var(--bg-sunken);
}

/* Info card (key-value rows) */
.profile-info-card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.profile-info-card__row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 18px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.profile-info-card__row:last-child { border-bottom: none; }
.profile-info-card__key { color: var(--ink-3); flex-shrink: 0; }

/* Timeline diplômes */
.profile-timeline {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.profile-timeline__row {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 14px;
  padding: 14px 18px;
  font-size: 14px;
}
.profile-timeline__row--border { border-bottom: 1px solid var(--line); }
.profile-timeline__icon { color: var(--accent); font-size: 13px; padding-top: 1px; }
.profile-timeline__content { color: var(--ink); line-height: 1.5; }

/* Avis summary */
.profile-reviews-summary {
  display: flex;
  gap: 24px;
  align-items: center;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}
.profile-reviews-score {
  font-family: var(--font-serif);
  font-size: 56px;
  color: var(--ink);
  line-height: 1;
  flex-shrink: 0;
}
.stars--lg .stars__val { font-size: 13px; }
.stars--lg svg { width: 16px; height: 16px; }

/* Aside */
.profile-aside { display: flex; flex-direction: column; gap: 16px; }

.profile-map-card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.profile-map-card__map { height: 200px; }
.profile-map-card__footer { padding: 14px 16px; }
.profile-map-card__addr { font-weight: 500; font-size: 13px; color: var(--ink); margin-bottom: 3px; }
.profile-map-card__coords { font-family: var(--font-mono); font-size: 11px; color: var(--ink-3); margin-top: 5px; }

.profile-aside-card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}
.profile-aside-card__title { font-weight: 500; margin-bottom: 14px; font-size: 15px; }

.profile-compare-cta {
  background: var(--accent-soft);
  border-radius: var(--radius);
  padding: 22px;
}
.profile-compare-cta__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 22px;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.profile-compare-cta__body { font-size: 13px; color: var(--accent-ink); margin-bottom: 16px; line-height: 1.55; }

/* ============================================================
   RESPONSIVE — Mobile
   ============================================================ */
@media (max-width: 900px) {
  .hero-split { margin-top: -61px; }
  .hero-split__body { padding: calc(60px + 61px) 24px 80px; }
  .hero-split__stats { gap: 32px; }
  .how-it-works, .specialties-section, .trust-section,
  .regions-section, .articles-section, .site-footer { padding-inline: 24px; }
  .how-it-works__grid { grid-template-columns: 1fr; }
  .specialties-grid { grid-template-columns: 1fr 1fr; }
  .articles-grid { grid-template-columns: 1fr; }
  .trust-section__inner { grid-template-columns: 1fr; gap: 40px; }
  .regions-table { grid-template-columns: 1fr; }
  .region-row { border-right: none; }
  .site-footer__inner { grid-template-columns: 1fr 1fr; }
  .navbar { padding: 16px 20px; }
  .navbar__nav { display: none; }

  /* Annuaire */
  .annuaire-split { grid-template-columns: 1fr; height: auto; }
  .annuaire-map { display: none; }
  .annuaire-topbar { padding: 12px 16px; top: 61px; }

  /* Profil */
  .profile-header { padding: 24px 20px; }
  .profile-header__inner { grid-template-columns: 1fr; }
  .profile-header__left { flex-direction: column; }
  .profile-header__avatar { width: 72px; height: 72px; font-size: 26px; }
  .profile-breadcrumb { padding: 10px 20px; }
  .profile-body { grid-template-columns: 1fr; padding: 24px 20px; gap: 24px; }
  .profile-aside { order: -1; }
}
@media (max-width: 600px) {
  .specialties-grid { grid-template-columns: 1fr; }
  .site-footer__inner { grid-template-columns: 1fr; }
  .search-bar { flex-direction: column; }
  .search-bar__divider { width: 100%; height: 1px; }
  .search-bar__btn { border-radius: 7px; padding: 14px; }
  .hero-split__title { font-size: 48px; }
  .profile-reviews-summary { flex-direction: column; align-items: flex-start; }
}
