/* === Annuaire design — extracted from Astro DirectoryLayout + annuaire/index + SkillerCard === */
/* --- DirectoryLayout (global) --- */
  *,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    /* Tokens : aligned on index-stan (redesign-preserve) */
    --bg:#FFFFFF; --bg2:#FAFAFA; --bg3:#F4F4F5; --bg4:#F9F9FB;
    --ink:#0A0A0A; --ink2:#1F1F23; --ink3:#3F3F46;
    --mu:#6B7280; --mu2:#9CA3AF; --mu3:#D1D5DB;
    --line:rgba(0,0,0,.06); --line2:rgba(0,0,0,.1); --line3:rgba(0,0,0,.14);

    /* Single locked accent : Indigo (Color Consistency Lock) */
    --in:#5B5BD6; --in-dk:#4747B5;
    --in-soft:#EEEEFB; --in-soft2:#DEDCFC; --in-soft3:#C6C2F9;

    --suc:#00925F;
    --F:'Geist','Inter',-apple-system,BlinkMacSystemFont,sans-serif;
    --S:'Geist','Inter',sans-serif;
    --ease:cubic-bezier(.4,0,.2,1);

    /* Shape Consistency Lock : 14px cards, full pill for interactive */
    --r-card:14px;
    --r-pill:50px;

    --shadow-xs:0 1px 3px rgba(10,10,10,.04);
    --shadow-sm:0 2px 8px rgba(10,10,10,.05);
    --shadow-md:0 8px 24px rgba(10,10,10,.06);
  }

  html { scroll-behavior: smooth; }
  body {
    background: var(--bg); color: var(--ink); font-family: var(--F);
    -webkit-font-smoothing: antialiased;
    font-feature-settings: 'cv02','cv03','cv04','cv11';
    line-height: 1.6;
    overflow-x: hidden;
  }
  a { color: inherit; text-decoration: none; }
  strong { font-weight: 700; color: var(--ink); }
  ::selection { background: var(--in-soft2); color: var(--in-dk); }

  /* Phosphor icon sizing helpers */
  i.ph, i[class*="ph-"] { display: inline-block; line-height: 1; }
  .ico-sm { font-size: 14px; }
  .ico-md { font-size: 18px; }
  .ico-lg { font-size: 22px; }
  .ico-xl { font-size: 28px; }

  /* NAV (1 line, ≤ 80px) */
  nav.dir-nav {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255,255,255,.85); backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
    padding: 16px 32px;
    display: flex; align-items: center; justify-content: space-between;
    height: 72px;
  }
  .dir-logo {
    display: inline-flex; align-items: center; gap: 9px;
    color: var(--ink); font-weight: 700; font-size: 21px;
    font-family: 'Geist','Inter',sans-serif; line-height: 1;
    letter-spacing: -.04em;
  }
  .dir-logo em { font-style: normal; color: var(--in); font-weight: 700; }
  .dir-nav-links { display: flex; gap: 28px; align-items: center; }
  .dir-nav-links a:not(.dir-nav-cta) {
    font-size: 14px; font-weight: 500; color: var(--mu);
    transition: color .15s var(--ease);
  }
  .dir-nav-links a:not(.dir-nav-cta):hover { color: var(--ink); }
  .dir-nav-cta {
    background: var(--ink); color: #fff !important;
    padding: 9px 18px; border-radius: 8px;
    font-size: 13.5px; font-weight: 600;
    display: inline-flex; align-items: center; gap: 6px;
    transition: all .15s var(--ease);
  }
  .dir-nav-cta:hover {
    background: #000; transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(10,10,10,.15);
  }
  @media (max-width: 768px) {
    nav.dir-nav { padding: 14px 18px; height: 64px; }
    .dir-nav-links a:not(.dir-nav-cta) { display: none; }
  }

  /* BREADCRUMBS */
  .crumbs {
    max-width: 1180px; margin: 0 auto;
    padding: 24px 24px 0;
    font-size: 13px; color: var(--mu); font-weight: 500;
  }
  .crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
  .crumbs li { display: inline-flex; align-items: center; gap: 6px; }
  .crumbs a { color: var(--mu); transition: color .15s; }
  .crumbs a:hover { color: var(--in); }
  .crumb-sep { opacity: .5; font-size: 12px; }
  .crumb-current { color: var(--ink2); font-weight: 600; }

  /* CONTAINERS */
  .container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
  section.dir-section { max-width: 1180px; margin: 0 auto; padding: 56px 24px; }
  @media (max-width: 768px) { section.dir-section { padding: 40px 18px; } }

  /* SECTION HEADS (no eyebrow by default - eyebrow restraint applies per page) */
  .section-head { margin-bottom: 28px; }
  .section-head h2 {
    font-size: clamp(24px,2.8vw,32px); font-weight: 800;
    letter-spacing: -.8px; line-height: 1.15;
    color: var(--ink); margin-bottom: 6px;
  }
  .section-head h2 em { font-style: normal; color: var(--in); font-weight: 800; font-family: var(--F); }
  .section-head p { color: var(--mu); font-size: 15px; max-width: 580px; }

  /* HERO base (≤ pt-24, ≤ 4 elements, viewport-stable) */
  .dir-hero {
    position: relative;
    padding: 64px 24px 40px;
    max-width: 1180px; margin: 0 auto;
  }
  .dir-hero-bg {
    position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(ellipse 80% 50% at 50% -10%, var(--in-soft) 0%, transparent 60%);
  }
  .dir-hero-inner { position: relative; max-width: 720px; }
  .dir-hero-inner.center { margin: 0 auto; text-align: center; }

  /* Eyebrow ONLY on hero (per skill : max 1/3 sections, hero counts as 1) */
  .h-badge {
    display: inline-flex; align-items: center; gap: 10px;
    background: #fff; border: 1px solid var(--line2);
    border-radius: var(--r-pill); padding: 6px 16px 6px 6px;
    font-size: 12.5px; font-weight: 500; color: var(--ink2);
    margin-bottom: 24px; box-shadow: var(--shadow-xs);
  }
  .h-badge-pill {
    background: var(--in); color: #fff; font-weight: 700;
    font-size: 10.5px; padding: 3px 10px; border-radius: var(--r-pill);
    letter-spacing: .2px;
  }
  .h-badge-sep { width: 1px; height: 14px; background: var(--line2); }

  .dir-hero h1 {
    font-size: clamp(34px,5vw,56px); font-weight: 800;
    letter-spacing: -1.8px; line-height: 1.08;
    color: var(--ink); margin-bottom: 16px;
  }
  .dir-hero h1 em { font-style: normal; color: var(--in); font-weight: 800; font-family: var(--F); }
  .dir-hero h1 .serif { font-family: var(--S); font-style: normal; color: var(--in); font-weight: 700; }
  .dir-hero p {
    font-size: clamp(15px,1.3vw,17px); color: var(--mu);
    line-height: 1.6; max-width: 580px;
  }
  .dir-hero-inner.center p { margin-left: auto; margin-right: auto; }
  .dir-hero p strong { color: var(--ink); font-weight: 600; }

  /* Stats : non-eyebrow inline meta line under hero */
  .stats-inline {
    margin-top: 20px; color: var(--mu); font-size: 13.5px;
    display: inline-flex; gap: 18px; flex-wrap: wrap; align-items: center;
  }
  .stats-inline strong { color: var(--ink); font-weight: 700; }
  .stats-inline .sep { opacity: .4; }

  /* GRIDS */
  .grid-cards { display: grid; gap: 18px; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); }
  .grid-cats { display: grid; gap: 14px; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
  .grid-universes { display: grid; gap: 14px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

  /* UNIVERSE CARD : monochrome indigo variants (color lock) instead of rainbow gradients */
  .universe-card {
    position: relative; padding: 24px;
    border-radius: var(--r-card);
    background: #fff; border: 1px solid var(--line);
    color: var(--ink); overflow: hidden;
    transition: all .2s var(--ease);
    box-shadow: var(--shadow-xs);
  }
  .universe-card:hover {
    border-color: var(--in-soft2);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
  }
  .universe-ico {
    width: 44px; height: 44px; border-radius: var(--r-card);
    background: var(--in-soft); color: var(--in-dk);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; margin-bottom: 14px;
  }
  .universe-name { font-size: 17px; font-weight: 700; color: var(--ink); margin-bottom: 4px; letter-spacing: -.3px; }
  .universe-desc { font-size: 13.5px; color: var(--mu); line-height: 1.5; }
  .universe-cta {
    margin-top: 14px;
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 13px; font-weight: 600; color: var(--in);
    transition: gap .2s var(--ease);
  }
  .universe-card:hover .universe-cta { gap: 8px; }

  /* CATEGORY CARD */
  .cat-card {
    padding: 20px; border-radius: var(--r-card);
    background: #fff; border: 1px solid var(--line);
    color: var(--ink); display: block;
    transition: all .2s var(--ease);
    box-shadow: var(--shadow-xs);
  }
  .cat-card:hover {
    border-color: var(--in-soft2);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
  }
  .cat-ico {
    width: 36px; height: 36px; border-radius: 10px;
    background: var(--in-soft); color: var(--in-dk);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 18px; margin-bottom: 12px;
  }
  .cat-name { font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 4px; letter-spacing: -.2px; }
  .cat-desc { font-size: 13px; color: var(--mu); line-height: 1.5; }

  /* PILLS (Shape Consistency Lock : all full-pill) */
  .pills { display: flex; flex-wrap: wrap; gap: 9px; }
  .pill {
    display: inline-flex; align-items: center; gap: 6px;
    background: #fff; color: var(--ink2);
    padding: 8px 16px; border-radius: var(--r-pill);
    font-size: 13px; font-weight: 500;
    border: 1px solid var(--line2);
    transition: all .15s var(--ease);
    box-shadow: var(--shadow-xs);
    cursor: pointer;
  }
  .pill:hover {
    background: var(--in-soft); color: var(--in-dk);
    border-color: var(--in-soft2);
  }
  .pill-active { background: var(--ink); color: #fff; border-color: var(--ink); box-shadow: none; }
  .pill-active:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
  .pill i { font-size: 14px; opacity: .7; }

  /* EDITORIAL */
  .editorial {
    max-width: 760px; margin: 0;
    padding: 28px; border-radius: var(--r-card);
    background: var(--bg2);
    border: 1px solid var(--line);
    font-size: 15.5px; line-height: 1.7; color: var(--ink2);
  }
  .editorial p + p { margin-top: 14px; }
  .editorial strong { color: var(--ink); }

  /* FAQ (no border-t+border-b on every row : grouped cards instead) */
  .faq-list { max-width: 760px; display: grid; gap: 10px; }
  .faq-item {
    border: 1px solid var(--line); border-radius: var(--r-card);
    background: #fff;
    transition: border-color .15s, box-shadow .15s;
  }
  .faq-item:hover { border-color: var(--line2); }
  .faq-item[open] { box-shadow: var(--shadow-sm); border-color: var(--in-soft2); }
  .faq-q {
    font-weight: 600; font-size: 15px; color: var(--ink);
    cursor: pointer; list-style: none;
    padding: 16px 20px;
    display: flex; justify-content: space-between; align-items: center; gap: 12px;
    letter-spacing: -.1px;
  }
  .faq-q::-webkit-details-marker { display: none; }
  .faq-q::after {
    content: '+'; color: var(--mu); font-weight: 400; font-size: 22px;
    transition: transform .25s var(--ease); flex-shrink: 0; line-height: 1;
  }
  details[open] .faq-q::after { transform: rotate(45deg); color: var(--in); }
  .faq-a { color: var(--ink3); font-size: 14.5px; line-height: 1.7; padding: 0 20px 18px; }

  /* CTA BAND : dark theme allowed (color lock = same accent indigo) */
  .cta-band {
    margin: 56px auto 0; max-width: 1180px;
    background: linear-gradient(160deg, #0A0A0A 0%, #1A1A2E 100%);
    border-radius: 24px; padding: 56px 44px;
    color: #fff; text-align: center; position: relative; overflow: hidden;
  }
  .cta-band::before {
    content: ''; position: absolute; top: -120px; right: -120px;
    width: 460px; height: 460px; border-radius: 50%;
    background: radial-gradient(circle, rgba(91,91,214,.3), transparent 70%);
    pointer-events: none;
  }
  .cta-band > * { position: relative; }
  .cta-band h2 {
    font-size: clamp(24px,2.8vw,32px); font-weight: 800;
    letter-spacing: -.8px; line-height: 1.15;
    margin-bottom: 14px;
  }
  .cta-band h2 em { font-style: normal; color: var(--in-soft2); font-family: var(--F); font-weight: 800; }
  .cta-band p {
    color: rgba(255,255,255,.78); max-width: 520px;
    margin: 0 auto 24px; font-size: 15px; line-height: 1.6;
  }
  .cta-btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: #fff; color: var(--ink);
    padding: 13px 26px; border-radius: 12px;
    font-size: 14px; font-weight: 700;
    transition: all .2s var(--ease);
  }
  .cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(255,255,255,.16);
  }

  /* FOOTER */
  footer.dir-footer {
    border-top: 1px solid var(--line);
    padding: 44px 24px 32px; text-align: center;
    color: var(--mu); font-size: 13px;
    background: var(--bg2); margin-top: 72px;
  }
  .dir-footer-links { margin-bottom: 12px; }
  .dir-footer-links a {
    color: var(--ink2); margin: 0 12px; font-weight: 500;
    transition: color .15s;
  }
  .dir-footer-links a:hover { color: var(--in); }
  .dir-footer-copy { font-size: 12px; color: var(--mu2); }

  /* SEARCH BAR */
  .search-bar {
    background: #fff; border: 1px solid var(--line2);
    border-radius: var(--r-card); padding: 6px 6px 6px 18px;
    display: flex; align-items: center; gap: 8px;
    box-shadow: var(--shadow-xs);
    transition: border-color .15s, box-shadow .2s;
  }
  .search-bar:focus-within {
    border-color: var(--in-soft3); box-shadow: 0 0 0 4px var(--in-soft);
  }
  .search-bar > i { color: var(--mu2); font-size: 18px; flex-shrink: 0; }
  .search-bar input {
    flex: 1; border: none; outline: none;
    font-size: 15px; font-family: var(--F);
    padding: 13px 0; background: transparent; color: var(--ink);
  }
  .search-bar input::placeholder { color: var(--mu2); }
  .search-bar button {
    background: var(--ink); color: #fff; border: none;
    padding: 12px 22px; border-radius: 10px;
    font-weight: 600; font-size: 14px; cursor: pointer;
    display: inline-flex; align-items: center; gap: 6px;
    transition: all .15s;
    font-family: var(--F);
  }
  .search-bar button:hover {
    background: #000; transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(10,10,10,.15);
  }

  /* FILTERS BAR */
  .filters-bar {
    display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
    margin-bottom: 28px;
  }
  .filters-bar-label {
    font-size: 12px; color: var(--mu); font-weight: 600;
    margin-right: 6px;
  }

  /* EMPTY STATE */
  .empty-state {
    text-align: center; padding: 72px 20px;
    background: var(--bg2); border: 1px dashed var(--line2);
    border-radius: var(--r-card);
  }
  .empty-state-ico { font-size: 36px; color: var(--mu2); margin-bottom: 14px; }
  .empty-state-title { font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
  .empty-state-desc { font-size: 14px; color: var(--mu); }
  .empty-state-cta {
    margin-top: 18px;
    display: inline-flex; align-items: center; gap: 5px;
    color: var(--in); font-weight: 600; font-size: 14px;
  }

/* --- annuaire/index (hero-split + tiles) --- */
  /* HERO SPLIT (variance 6) */
  .hero-split {
    max-width: 1180px; margin: 0 auto;
    padding: 56px 24px 40px;
    position: relative;
  }
  .hero-split-inner {
    display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px;
    align-items: center;
  }
  .hero-split-left { max-width: 580px; }
  .hero-split-left h1 {
    font-size: clamp(34px, 5.2vw, 56px); font-weight: 800;
    letter-spacing: -1.8px; line-height: 1.08;
    color: var(--ink); margin-bottom: 18px;
  }
  .hero-split-left h1 em {
    font-style: normal; color: var(--in); font-weight: 800;
    font-family: var(--F);
  }
  .hero-split-left p {
    font-size: clamp(15px, 1.3vw, 17px); color: var(--mu);
    line-height: 1.6; max-width: 540px; margin-bottom: 24px;
  }
  .hero-split-left p strong { color: var(--ink); font-weight: 600; }
  .hero-split-left .search-bar { max-width: 540px; }

  .hero-split-right {
    position: relative; aspect-ratio: 4/4.5;
    border-radius: 24px; overflow: hidden;
    box-shadow: 0 20px 60px rgba(10,10,10,.12);
  }
  .hero-split-right img {
    width: 100%; height: 100%; object-fit: cover; display: block;
  }
  .hero-asset-card {
    position: absolute; bottom: 24px; left: 24px;
    background: rgba(255,255,255,.96); backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.6);
    border-radius: 14px; padding: 12px 16px;
    display: flex; align-items: center; gap: 12px;
    box-shadow: 0 8px 24px rgba(10,10,10,.12);
  }
  .hero-asset-card i { color: var(--in); font-size: 28px; }
  .hero-asset-t { font-size: 13px; font-weight: 700; color: var(--ink); line-height: 1.2; }
  .hero-asset-d { font-size: 11.5px; color: var(--mu); margin-top: 2px; }

  @media (max-width: 900px) {
    .hero-split-inner { grid-template-columns: 1fr; gap: 32px; }
    .hero-split-right { aspect-ratio: 1/1; max-height: 480px; max-width: 480px; margin: 0 auto; }
  }

  /* TILES (catégories / villes) */
  .tiles-section { padding-top: 16px; padding-bottom: 16px; }
  /* mapping ville → pays géré dans le frontmatter (cityCountry) */
  .tiles-head {
    display: flex; align-items: baseline; justify-content: space-between;
    margin-bottom: 16px; gap: 16px;
  }
  .tiles-h {
    font-size: 18px; font-weight: 700; color: var(--ink);
    letter-spacing: -.3px;
  }
  .tiles-all {
    font-size: 13px; font-weight: 600; color: var(--in);
    display: inline-flex; align-items: center; gap: 4px;
    transition: gap .2s var(--ease);
    white-space: nowrap;
  }
  .tiles-all:hover { gap: 8px; }

  .tile-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }
  .tile {
    display: flex; align-items: center; gap: 12px;
    padding: 14px 16px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    color: var(--ink);
    transition: all .18s var(--ease);
    min-width: 0;
  }
  .tile:hover {
    border-color: var(--in-soft2);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
  }
  .tile-ico {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: #F3F4F6;
    color: var(--ink2);
    display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-size: 17px;
  }
  .tile-flag {
    width: 28px; height: 28px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 0 0 1px rgba(0,0,0,.04);
  }
  .tile-name {
    font-size: 14px; font-weight: 600; color: var(--ink);
    letter-spacing: -.1px;
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
    min-width: 0;
  }

  @media (max-width: 920px) {
    .tile-grid { grid-template-columns: repeat(3, 1fr); }
  }
  @media (max-width: 640px) {
    .tile-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .tile { padding: 12px 14px; gap: 10px; }
    .tile-ico { width: 32px; height: 32px; font-size: 15px; }
  }

/* --- SkillerCard --- */
  .sk-card {
    position: relative;
    display: flex; flex-direction: column;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r-card); padding: 20px;
    color: var(--ink);
    transition: all .2s var(--ease);
    box-shadow: var(--shadow-xs);
  }
  .sk-card:hover {
    border-color: var(--in-soft2);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
  }

  .sk-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
  .sk-avatar {
    width: 48px; height: 48px; border-radius: 50%;
    color: #fff; font-weight: 700; font-size: 16px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; letter-spacing: -.3px;
  }
  .sk-avatar-img {
    object-fit: cover;
    background: var(--in-soft);
  }
  .sk-lang { gap: 5px; }
  .sk-flag {
    width: 18px; height: 18px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
  }
  .sk-lang-text { font-size: 11.5px; font-weight: 600; }
  .sk-id { flex: 1; min-width: 0; }
  .sk-name {
    font-weight: 700; font-size: 15.5px; color: var(--ink);
    margin-bottom: 2px; line-height: 1.2; letter-spacing: -.2px;
    display: inline-flex; align-items: center; gap: 5px;
  }
  .sk-verified { color: var(--in); font-size: 14px; }
  .sk-rating {
    font-size: 13px; color: var(--mu);
    display: inline-flex; align-items: center; gap: 5px;
  }
  .sk-star { color: #F59E0B; font-size: 13px; }
  .sk-rating strong { color: var(--ink); font-weight: 700; }
  .sk-reviews { font-size: 12px; }
  .sk-reviews::before { content: '· '; opacity: .4; margin-right: 2px; }

  .sk-tagline {
    font-size: 13.5px; color: var(--ink2);
    line-height: 1.5; margin-bottom: 12px;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
    overflow: hidden; min-height: 40px;
  }

  .sk-meta {
    display: flex; align-items: center; gap: 14px;
    padding: 10px 0; border-top: 1px solid var(--line);
    font-size: 12.5px; color: var(--mu); flex-wrap: wrap;
  }
  .sk-meta-item { display: inline-flex; align-items: center; gap: 5px; }
  .sk-meta-item i { font-size: 13px; opacity: .65; flex-shrink: 0; }

  .sk-badges { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 12px; }
  .sk-badge {
    font-size: 10.5px; font-weight: 700;
    padding: 3px 9px; border-radius: var(--r-pill);
    letter-spacing: .2px;
  }
  .sk-badge-pro { background: var(--in-soft); color: var(--in-dk); border: 1px solid var(--in-soft2); }
  .sk-badge-new { background: #FEF3C7; color: #92400E; border: 1px solid #FDE68A; }

  .sk-foot {
    margin-top: auto;
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 10px; border-top: 1px solid var(--line);
  }
  .sk-price { font-size: 13px; color: var(--mu); }
  .sk-price strong { color: var(--ink); font-weight: 800; font-size: 16px; letter-spacing: -.3px; }
  .sk-price-unit { font-size: 11.5px; }
  .sk-cta {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 13px; color: var(--in); font-weight: 600;
    transition: gap .2s var(--ease);
  }
  .sk-card:hover .sk-cta { gap: 9px; }
  .sk-cta i { font-size: 12px; }

/* === Responsive mobile (annuaire) === */
  /* L'input flex doit pouvoir rétrécir : sans min-width:0 le placeholder
     long élargit la barre de recherche au-delà du viewport. */
  .search-bar input { min-width: 0; }

  @media (max-width: 600px) {
    /* Cartes en une colonne : minmax(290px,1fr) débordait sous ~330px. */
    .grid-cards { grid-template-columns: 1fr; }

    /* Conteneurs : marges latérales homogènes (18px). */
    .container { padding: 0 18px; }
    section.dir-section { padding: 32px 18px; }

    /* Hero split (accueil) : moins de hauteur, image en bannière compacte. */
    .hero-split { padding: 32px 18px 24px; }
    .hero-split-inner { gap: 24px; }
    .hero-split-right { aspect-ratio: 16 / 10; max-height: 260px; max-width: none; }
    .hero-asset-card { bottom: 14px; left: 14px; padding: 10px 12px; }

    /* Hero simple (recherche / catégories). */
    .dir-hero { padding: 36px 18px 24px; }

    /* Barre de recherche : un peu plus compacte. */
    .search-bar { padding: 5px 5px 5px 14px; }
    .search-bar button { padding: 11px 16px; }

    /* Filtres : selects pleine largeur empilés, plus faciles à taper. */
    .filters-bar select { flex: 1 1 100%; }

    /* CTA band : marges latérales + padding réduit (ne colle plus aux bords). */
    .cta-band { margin: 40px 18px 0; padding: 36px 22px; border-radius: 18px; }
    .editorial { padding: 20px; }
  }

  @media (max-width: 420px) {
    /* Nav : CTA compacte (le libellé long débordait sur les petits écrans). */
    nav.dir-nav { padding: 12px 14px; }
    .dir-nav-cta { padding: 8px 12px; font-size: 12.5px; }
    .dir-logo { font-size: 19px; }
  }
