/* ═══════════════════════════════════════
   Sté Jourdan — ste-main.css
   Design bento · Lora serif · #FAF9F5
   ═══════════════════════════════════════ */

/* ── RESET & ROOT ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:      #F9F9F7;
  --card:    #F3F2EE;
  --white:   #ffffff;
  --border:  #ffffff;
  --ink:     #111111;
  --ink2:    #555555;
  --ink3:    #888888;
  --ink4:    #bbbbbb;
  --ink5:    #dddddd;
  --accent:  #111111;
  --lora:    'Lora', Georgia, serif;
  --font-t:  'Lora', Georgia, serif;
  --sans:    -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --r:       20px;
  --r-sm:    12px;
  --r-xs:    9px;
  --col:     1000px;
  --bw:      3.5px solid var(--white);
  --shadow:  none;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.sj-front { cursor: none; }

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* ── CURSOR ── */
.sj-cursor-dot, .sj-cursor-ring {
  position: fixed; pointer-events: none; z-index: 9999; border-radius: 50%; transform: translate(-50%,-50%);
}
.sj-cursor-dot  { width: 6px; height: 6px; background: var(--ink); }
.sj-cursor-ring { width: 32px; height: 32px; border: 1.5px solid rgba(0,0,0,.25); transition: width .2s, height .2s; }
.sj-cursor-ring.big { width: 48px; height: 48px; }

/* ── NAV PILL ── */
.sj-nav-pill {
  position: sticky; top: 14px; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  max-width: 720px; margin: 14px auto 32px;
  padding: 0 8px 0 18px; height: 50px;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 0.5px solid rgba(0,0,0,.08);
  border-radius: 100px;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.sj-nav-logo { display: flex; align-items: center; }
.sj-nav-logo-text { font-family: var(--lora); font-size: 16px; font-weight: 700; color: var(--ink); }
.sj-nav-links { display: flex; gap: 4px; }
.sj-nav-links a {
  font-size: 14px; color: var(--ink3); font-weight: 500;
  padding: 7px 14px; border-radius: 100px;
  transition: color .15s, background .15s;
}
.sj-nav-links a:hover { color: var(--ink); }
.sj-nav-links a.active { color: var(--ink); background: rgba(0,0,0,.06); }
.sj-nav-right { display: flex; align-items: center; gap: 8px; }
.sj-nav-cta {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600; color: var(--white);
  background: var(--ink);
  border-radius: 100px; padding: 6px 6px 6px 18px;
  transition: all .15s;
}
.sj-nav-cta:hover { background: #333; }
.sj-nav-cta-ico {
  display: flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--white); color: var(--ink); font-size: 14px;
}
.sj-nav-more {
  display: flex; align-items: center; justify-content: center;
  gap: 3px;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--ink); color: var(--white);
  border: none; cursor: pointer;
  transition: background .15s;
}
.sj-nav-more span { width: 4px; height: 4px; border-radius: 50%; background: var(--white); flex-shrink: 0; }
.sj-nav-more:hover { background: #333; }

/* ── PAGE WRAPPER ── */
.sj-page {
  max-width: var(--col); margin: 0 auto;
  padding: 0 20px 60px;
  display: flex; flex-direction: column; gap: 22px;
}

/* ── BENTO CARD ── */
.bento-card {
  background: var(--card);
  border: 3px solid var(--white);
  border-radius: var(--r);
  padding: 24px;
}
.bento-full { width: 100%; }

/* ── BENTO GRID 2 cols ── */
.bento-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

/* ── EYEBROW & TITLES ── */
.bento-eyebrow {
  font-size: 11px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink3); margin-bottom: 8px;
}
.bento-title {
  font-family: var(--lora);
  font-size: clamp(19px,2.5vw,25px);
  font-weight: 700; line-height: 1.15;
  color: var(--ink); margin-bottom: 16px;
}
.bento-title em { font-style: italic; color: var(--ink); }
.bento-hd { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 16px; }
.bento-hd .bento-title { margin-bottom: 0; }

/* ── BUTTONS ── */
.btn-main {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--ink); color: var(--white);
  border: none; border-radius: 100px;
  padding: 6px 6px 6px 24px; font-size: 14px; font-weight: 600;
  cursor: pointer; transition: background .15s, transform .1s;
  font-family: var(--sans);
}
.btn-main:hover { background: #333; transform: translateY(-1px); }
.btn-arrow {
  display: flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0;
  background: var(--white); color: var(--ink); font-size: 14px;
}

.btn-sec {
  display: inline-flex; align-items: center;
  background: rgba(0,0,0,.06); border: 1.5px solid rgba(0,0,0,.18);
  border-radius: 100px; padding: 11px 24px;
  font-size: 14px; font-weight: 600; color: var(--ink);
  transition: all .15s; cursor: pointer;
}
.btn-sec:hover { background: rgba(0,0,0,.1); }

.btn-sm {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ink); color: var(--white);
  border: none; border-radius: 100px; padding: 5px 5px 5px 16px;
  font-size: 12px; font-weight: 600;
  transition: all .15s; cursor: pointer; white-space: nowrap;
}
.btn-sm:hover { background: #333; }
.btn-sm-arrow {
  display: flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0;
  background: var(--white); color: var(--ink); font-size: 11px;
}

.btn-full {
  display: inline-flex; align-items: center; gap: 10px;
  width: auto; background: var(--ink); border: none;
  border-radius: 100px; padding: 8px 8px 8px 18px;
  font-size: 13px; font-weight: 600; color: var(--white);
  transition: all .15s; cursor: pointer; margin-top: 12px;
}
.btn-full > i { font-size: 15px; color: var(--white); }
.btn-full-txt { flex: 1; }
.btn-full-arrow {
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
  background: var(--white); color: var(--ink);
  transition: all .15s;
}
.btn-full-arrow i { font-size: 14px; transform: rotate(-45deg); transition: transform .2s; }
.btn-full:hover { background: #333; }
.btn-full:hover .btn-full-arrow i { transform: rotate(0deg); }

/* ── HERO ── */
.bento-hero {
  background: linear-gradient(135deg,#EEF2FF 0%,#FAF5FF 35%,#FFF7ED 65%,#ECFDF5 100%);
  border: 3px solid var(--white); border-radius: var(--r);
  padding: 32px; position: relative; overflow: hidden;
}
.bento-hero::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 360px; height: 360px;
  background: radial-gradient(circle,rgba(139,92,246,.14) 0%,rgba(56,189,248,.07) 45%,transparent 70%);
  pointer-events: none;
}
.bento-hero::after {
  content: ''; position: absolute; bottom: -50px; left: 60px;
  width: 260px; height: 200px;
  background: radial-gradient(circle,rgba(245,158,11,.1) 0%,transparent 70%);
  pointer-events: none;
}

.hero-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }

.hero-dispo {
  display: inline-flex; align-items: center; gap: 6px;
  border: 0.5px solid; border-radius: 100px;
  padding: 4px 12px; font-size: 12px; font-weight: 600;
}
.hero-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(.7)} }

.hero-meteo { display: flex; align-items: center; gap: 5px; font-size: 12px; color: var(--ink2); }
.hero-meteo i { font-size: 13px; color: var(--ink2); }
.hero-sep { color: var(--ink3); }

.hero-h1 {
  font-family: var(--lora);
  font-size: clamp(33px,5vw,53px);
  font-weight: 700; line-height: 1.05;
  letter-spacing: -.02em; color: var(--ink);
  margin-bottom: 18px;
}
.hero-h1 em { font-style: italic; color: #9CA3AF; }

.hero-photo { display: inline-block; vertical-align: middle; margin: 0 4px; }
.hero-photo-round img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 2px solid var(--white); }
.hero-photo-rect img { width: 60px; height: 38px; border-radius: 8px; object-fit: cover; border: 2px solid var(--white); }

.hero-sub { font-size: 14px; color: var(--ink3); line-height: 1.7; margin-bottom: 24px; max-width: 440px; }
.hero-ctas { display: flex; gap: 10px; flex-wrap: wrap; }

/* ── ABOUT ── */
.bento-about { grid-column: 1; }

.about-photos { margin-bottom: 16px; }
.about-photo-wrap { position: relative; height: 130px; width: 220px; }
.about-photo { width: 110px; height: 110px; border-radius: var(--r-sm); object-fit: cover; border: 3px solid var(--white); position: absolute; }
.about-photo-1 { left: 0; top: 0; z-index: 2; transform: rotate(-3deg) translateX(0); transition: transform .4s cubic-bezier(.34,1.56,.64,1); }
.about-photo-2 { left: 64px; top: 14px; z-index: 1; transform: rotate(4deg) translateX(0); transition: transform .4s cubic-bezier(.34,1.56,.64,1) .05s; }
.bento-about:hover .about-photo-1 { transform: rotate(-6deg) translateY(-4px); }
.bento-about:hover .about-photo-2 { transform: rotate(7deg) translateY(-2px); }

.about-bio { font-size: 13px; color: var(--ink2); line-height: 1.75; max-height: 100px; overflow: hidden; transition: max-height .5s cubic-bezier(.22,1,.36,1); }
.about-bio p { margin-bottom: 8px; }

.about-more-btn {
  display: flex; align-items: center; gap: 8px;
  background: none; border: none; cursor: pointer;
  font-family: var(--sans); font-size: 13px; font-weight: 600;
  color: var(--ink); padding: 8px 0; margin-top: 4px;
}
.about-more-arr {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--ink); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; transition: transform .3s;
}

.about-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 6px; margin-top: 16px; }
.stat-card { background: var(--white); border: 3px solid var(--white); border-radius: var(--r-sm); padding: 10px; text-align: center; }
.stat-val { font-family: var(--lora); font-size: 19px; font-weight: 700; color: var(--ink); }
.stat-grad {
  background: linear-gradient(90deg,#38BDF8,#E8420A,#F59E0B);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-lbl { font-size: 10px; color: var(--ink4); margin-top: 2px; }

/* ── PROJETS ── */
.proj-list { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.proj-card {
  background: var(--white); border: 3px solid var(--white); border-radius: var(--r-sm);
  overflow: hidden; transition: transform .2s;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px;
}
.proj-card:hover { transform: translateY(-2px); }
.proj-body { flex: 1; }
.proj-title { font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 2px; }
.proj-meta { font-size: 11px; color: var(--ink4); margin-bottom: 4px; }
.proj-result { font-size: 11px; background: #F0FDF4; border: 0.5px solid #86EFAC; border-radius: 5px; padding: 2px 7px; color: #16A34A; display: inline-block; margin-bottom: 6px; }
.proj-tags { display: flex; gap: 4px; flex-wrap: wrap; }
.proj-tag { font-size: 10px; background: var(--bg); border-radius: 4px; padding: 2px 6px; color: var(--ink3); }

/* ── STORYTELLING ── */
.story-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.story-card {
  background: var(--white); border: 3px solid var(--white); border-radius: var(--r-sm);
  padding: 16px; display: flex; flex-direction: column; gap: 6px;
  transition: transform .2s;
}
.story-card:hover { transform: translateY(-2px); }
.story-num { font-family: var(--lora); font-size: 14px; font-weight: 700; color: var(--ink4); }
.story-tag { font-size: 10px; color: var(--ink4); text-transform: uppercase; letter-spacing: .06em; }
.story-title { font-size: 13px; font-weight: 600; color: var(--ink); line-height: 1.4; }
.story-desc { font-size: 12px; color: var(--ink3); line-height: 1.55; flex: 1; }
.story-arrow { font-size: 14px; color: var(--ink4); margin-top: auto; }

/* ── OUTILS ── */
.tool-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5px; }
.tool-item {
  background: var(--white); border: 3px solid var(--white); border-radius: var(--r-xs);
  padding: 8px 10px; display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--ink);
}
.tool-item i { font-size: 14px; color: var(--ink4); }

/* ── TÉMOIGNAGES ── */
.testi-list { display: flex; flex-direction: column; gap: 8px; }
.testi-card { background: var(--white); border: 3px solid var(--white); border-radius: var(--r-sm); padding: 14px; }
.testi-quote { font-size: 12px; color: var(--ink2); line-height: 1.65; font-style: italic; margin-bottom: 10px; }
.testi-author { display: flex; align-items: center; gap: 8px; }
.testi-av { width: 28px; height: 28px; border-radius: 50%; background: var(--ink); color: var(--white); font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.testi-name { font-size: 12px; font-weight: 600; color: var(--ink); }
.testi-role { font-size: 11px; color: var(--ink4); }
.testi-stars { margin-left: auto; font-size: 12px; color: #F59E0B; }

/* ── MONDE ── */
.monde-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; }
.monde-card {
  background: var(--white); border: 3px solid var(--white); border-radius: var(--r-sm);
  padding: 16px;
}
.monde-head { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.monde-badge {
  width: 34px; height: 34px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.monde-name { font-size: 14px; font-weight: 600; color: var(--ink); flex: 1; }
.monde-heart { font-size: 15px; color: var(--ink4); }
.monde-desc { font-size: 12px; color: var(--ink3); line-height: 1.55; }
.monde-spotify {
  display: flex; align-items: center; gap: 10px;
  background: #111; color: #fff; border-radius: 100px;
  padding: 12px 18px; margin-top: 14px; font-size: 13px;
  transition: opacity .15s;
}
.monde-spotify:hover { opacity: .85; }
.monde-spotify i { font-size: 18px; color: #1DB954; }
.monde-books { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-top: 14px; }
.book-card { display: flex; flex-direction: column; }
.book-cover {
  aspect-ratio: 3/4; border-radius: var(--r-xs);
  display: flex; align-items: flex-end; padding: 10px;
}
.book-cover span { color: #fff; font-family: var(--lora); font-style: italic; font-size: 13px; line-height: 1.2; }
.book-title { font-size: 12px; font-weight: 600; color: var(--ink); margin-top: 6px; }
.book-author { font-size: 11px; color: var(--ink4); }

/* ── BLOG BENTO ── */
.blog-bento-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.blog-bento-card {
  background: var(--white); border: 3px solid var(--white); border-radius: var(--r-sm);
  overflow: hidden; transition: transform .2s;
}
.blog-bento-card:hover { transform: translateY(-2px); }
.blog-bento-thumb {
  height: 80px; display: flex; align-items: center; justify-content: center;
  position: relative;
}
.blog-bento-thumb img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.blog-bento-body { padding: 12px; }
.blog-bento-cat { font-size: 10px; padding: 2px 7px; border-radius: 4px; display: inline-block; margin-bottom: 5px; background: var(--bg); color: var(--ink3); }
.blog-bento-title { font-size: 12px; font-weight: 600; color: var(--ink); margin-bottom: 3px; line-height: 1.4; }
.blog-bento-meta { font-size: 11px; color: var(--ink4); }

/* ── FAQ ── */
.faq-bento-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5px; }
.faq-item { background: var(--white); border: 3px solid var(--white); border-radius: var(--r-sm); overflow: hidden; }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 14px; font-size: 12px; font-weight: 600; color: var(--ink);
  cursor: pointer;
}
.faq-ico { font-size: 17px; color: var(--ink4); flex-shrink: 0; margin-left: 8px; transition: transform .2s; font-weight: 300; }
.faq-a { font-size: 12px; color: var(--ink2); line-height: 1.6; padding: 0 14px; max-height: 0; overflow: hidden; transition: max-height .3s, padding .3s; }
.faq-item.open .faq-q .faq-ico { transform: rotate(45deg); }
.faq-item.open .faq-a { max-height: 120px; padding: 0 14px 12px; }

/* ── CONTACT ── */
.bento-contact {
  background: linear-gradient(135deg,#EEF2FF 0%,#FAF5FF 40%,#FFF7ED 100%);
  display: flex; flex-direction: column; align-items: flex-start; gap: 24px;
}
.contact-sub { font-size: 14px; color: var(--ink3); line-height: 1.7; margin-top: 6px; }
.contact-actions { display: flex; flex-direction: row; align-items: center; gap: 12px; flex-wrap: wrap; }
.contact-links { display: flex; gap: 8px; }
.contact-link {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--white); border: 3px solid var(--white); border-radius: 100px;
  padding: 8px 16px; font-size: 12px; color: var(--ink);
  transition: all .15s;
}
.contact-link:hover { background: var(--ink); color: var(--white); }
.contact-link i { font-size: 14px; }

/* ── FOOTER ── */
.sj-footer {
  text-align: center; padding: 20px 0 10px;
  display: flex; flex-direction: column; gap: 6px; align-items: center;
}
.footer-logo { font-family: var(--lora); font-size: 16px; font-weight: 700; color: var(--ink); }
.footer-copy { font-size: 12px; color: var(--ink2); }
.footer-made { font-size: 12px; color: var(--ink2); display: flex; align-items: center; gap: 4px; }
.footer-made i { font-size: 15px; }

/* ── EMPTY MSG ── */
.empty-msg { font-size: 13px; color: var(--ink4); padding: 20px 0; }

/* ── EXPLORER MODAL ── */
.sj-explorer { position: fixed; inset: 0; z-index: 1000; display: none; align-items: flex-start; justify-content: center; }
.sj-explorer.open { display: flex; }
.sj-explorer-backdrop { position: absolute; inset: 0; background: rgba(20,20,18,.45); backdrop-filter: blur(2px); }
.sj-explorer-panel {
  position: relative; z-index: 1; width: 92%; max-width: 620px;
  margin-top: 8vh; max-height: 80vh; overflow-y: auto;
  background: var(--white); border-radius: 24px;
  padding: 32px; box-shadow: 0 20px 60px rgba(0,0,0,.25);
  animation: sjExplorerIn .25s cubic-bezier(.22,1,.36,1);
}
@keyframes sjExplorerIn { from { opacity:0; transform: translateY(-12px) scale(.98); } to { opacity:1; transform: none; } }
.sj-explorer-close {
  position: absolute; top: 20px; right: 20px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(0,0,0,.05); border: none; color: var(--ink2);
  font-size: 14px; cursor: pointer; transition: background .15s;
}
.sj-explorer-close:hover { background: rgba(0,0,0,.1); }
.sj-explorer-title { font-family: var(--lora); font-size: 26px; font-weight: 700; color: var(--ink); }
.sj-explorer-sub { font-size: 13px; color: var(--ink3); margin-top: 4px; margin-bottom: 20px; }
.sj-explorer-search {
  display: flex; align-items: center; gap: 8px;
  border: 1.5px solid rgba(0,0,0,.15); border-radius: 100px;
  padding: 4px 4px 4px 18px; margin-bottom: 20px;
}
.sj-explorer-search input {
  flex: 1; border: none; outline: none; background: transparent;
  font-size: 14px; color: var(--ink); font-family: var(--sans); padding: 10px 0;
}
.sj-explorer-search input::placeholder { color: var(--ink4); }
.sj-explorer-search-go {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  background: var(--ink); color: var(--white); font-size: 15px;
}
.sj-explorer-list { display: flex; flex-direction: column; gap: 10px; }
.sj-explorer-item {
  display: flex; align-items: center; gap: 14px;
  border: 1.5px solid rgba(0,0,0,.1); border-radius: 16px;
  padding: 14px 18px; font-size: 15px; color: var(--ink); font-weight: 500;
  transition: all .15s;
}
.sj-explorer-item:hover { background: rgba(0,0,0,.03); border-color: rgba(0,0,0,.2); }
.sj-explorer-item > i:first-child { font-size: 16px; color: var(--ink3); width: 20px; text-align: center; }
.sj-explorer-item span { flex: 1; }
.sj-explorer-go { font-size: 14px; color: var(--ink4); }
.sj-explorer-item.sj-hidden { display: none; }

/* ── REVEAL ANIMATION ── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s cubic-bezier(.22,1,.36,1), transform .6s cubic-bezier(.22,1,.36,1); }
.reveal.in { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 680px) {
  .bento-grid { grid-template-columns: 1fr; }
  .story-grid { grid-template-columns: 1fr; }
  .monde-grid { grid-template-columns: 1fr; }
  .blog-bento-grid { grid-template-columns: 1fr; }
  .faq-bento-grid { grid-template-columns: 1fr; }
  .bento-contact { flex-direction: column; }
  .contact-actions { align-items: flex-start; }
  .hero-h1 { font-size: 29px; }
  .sj-nav-links { display: none; }
  .about-stats { grid-template-columns: repeat(2,1fr); }
}

/* ══════════════════════════════════════════
   BLOG / SINGLE — home.php & single.php
   (ces templates utilisent leurs propres classes,
   non partagées avec le bento de front-page.php)
   ══════════════════════════════════════════ */

/* ── CURSEUR PERSONNALISÉ ── */
.cur { position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999; transform: translate(-50%,-50%); }
.cur-dot { width: 6px; height: 6px; background: var(--ink); border-radius: 50%; }
.cur-ring { width: 32px; height: 32px; border: 1.5px solid rgba(0,0,0,.25); border-radius: 50%; transition: width .2s, height .2s; }
#cRing.cur-big .cur-ring { width: 48px; height: 48px; }

/* ── NAV (single/archive) ── */
.nav {
  position: sticky; top: 14px; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1060px; margin: 14px auto 0; padding: 0 8px 0 18px; height: 50px;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 0.5px solid rgba(0,0,0,.08); border-radius: 100px;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.nav-logo { display: flex; align-items: center; }
.nav-links { display: flex; gap: 4px; }
.nav-links li { list-style: none; }
.nav-links a {
  font-size: 15px; color: var(--ink3); font-weight: 500;
  padding: 7px 14px; border-radius: 100px;
  transition: color .15s, background .15s;
}
.nav-links a:hover { color: var(--ink); background: rgba(0,0,0,.06); }
.nav-dots-btn {
  display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--ink); color: var(--white);
  border: none; font-size: 16px; cursor: pointer; transition: background .15s;
}
.nav-dots-btn:hover { background: #333; }
.btn-main-arrow {
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; flex-shrink: 0;
  background: var(--white); color: var(--ink);
}
.arr-ico { display: block; }

/* ── PANEL EXPLORER (single/archive) ── */
.panel-ov { position: fixed; inset: 0; z-index: 999; background: rgba(20,20,18,.45); backdrop-filter: blur(2px); opacity: 0; pointer-events: none; transition: opacity .2s; }
.panel-ov.open { opacity: 1; pointer-events: auto; }
.panel {
  position: fixed; top: 8vh; left: 50%; transform: translateX(-50%) translateY(-12px);
  z-index: 1000; width: 92%; max-width: 620px; max-height: 80vh; overflow-y: auto;
  background: var(--white); border-radius: 24px; padding: 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
  opacity: 0; pointer-events: none; transition: opacity .2s, transform .2s;
}
.panel.open { opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.panel-close {
  position: absolute; top: 20px; right: 20px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(0,0,0,.05); border: none; color: var(--ink2);
  font-size: 15px; cursor: pointer; transition: background .15s;
}
.panel-close:hover { background: rgba(0,0,0,.1); }
.panel-title { font-family: var(--lora); font-size: 27px; font-weight: 700; color: var(--ink); }
.panel-sub { font-size: 14px; color: var(--ink3); margin-top: 4px; margin-bottom: 20px; }
.panel-search {
  display: flex; align-items: center; gap: 8px;
  border: 1.5px solid rgba(0,0,0,.15); border-radius: 100px;
  padding: 4px 4px 4px 18px; margin-bottom: 20px;
}
.panel-search input { flex: 1; border: none; outline: none; background: transparent; font-size: 15px; color: var(--ink); font-family: var(--sans); padding: 10px 0; }
.panel-search input::placeholder { color: var(--ink4); }
.panel-search button {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  background: var(--ink); color: var(--white); font-size: 16px; border: none; cursor: pointer;
}
.panel-actions { display: flex; flex-direction: column; gap: 10px; }
.panel-action {
  display: flex; align-items: center; gap: 14px;
  border: 1.5px solid rgba(0,0,0,.1); border-radius: 16px;
  padding: 14px 18px; font-size: 16px; color: var(--ink); font-weight: 500;
  transition: all .15s;
}
.panel-action:hover { background: rgba(0,0,0,.03); border-color: rgba(0,0,0,.2); }
.panel-action > i:first-child { font-size: 17px; color: var(--ink3); width: 20px; text-align: center; }
.panel-action-label { flex: 1; }
.panel-action-arrow { font-size: 15px; color: var(--ink4); }

/* ── SECTION HEADER (blog) ── */
.sec-num { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink3); margin-bottom: 8px; }
.sec-title { font-family: var(--lora); font-size: clamp(27px,4vw,39px); font-weight: 700; line-height: 1.1; color: var(--ink); }
.sec-title em { font-style: italic; }

/* ── FILTRES BLOG ── */
.blog-filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.bf {
  background: var(--white); border: 1.5px solid rgba(0,0,0,.12); border-radius: 100px;
  padding: 7px 18px; font-size: 14px; font-weight: 600; color: var(--ink2);
  cursor: pointer; transition: all .15s;
}
.bf:hover { border-color: rgba(0,0,0,.3); }
.bf.on { background: var(--ink); border-color: var(--ink); color: var(--white); }

/* ── GRILLE BLOG ── */
.blog-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.blog-card {
  display: flex; flex-direction: column;
  background: var(--white); border: 3px solid var(--white);
  border-radius: var(--r-sm); overflow: hidden; transition: transform .2s;
}
.blog-card:hover { transform: translateY(-3px); }
.blog-thumb { position: relative; aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center; }
.blog-cats { position: absolute; top: 10px; left: 10px; }
.blog-cat { background: rgba(0,0,0,.55); color: #fff; border-radius: 100px; padding: 3px 12px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; backdrop-filter: blur(4px); }
.blog-body { padding: 16px 18px; }
.blog-title { font-size: 16px; font-weight: 700; color: var(--ink); line-height: 1.35; margin-bottom: 6px; }
.blog-meta { font-size: 13px; color: var(--ink3); margin-bottom: 8px; }
.blog-read { font-size: 13px; font-weight: 600; color: var(--ink); }

/* ── BOUTON "VOIR PLUS" ── */
.btn-sec-sm {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--white); border: 1.5px solid rgba(0,0,0,.15);
  border-radius: 100px; padding: 6px 6px 6px 20px;
  font-size: 14px; font-weight: 600; color: var(--ink);
  cursor: pointer; transition: all .15s;
}
.btn-sec-sm:hover { background: rgba(0,0,0,.04); }
.btn-sec-sm-arrow {
  display: flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  background: var(--ink); color: var(--white); font-size: 13px;
}

@media (max-width: 900px) {
  .blog-grid { grid-template-columns: 1fr; }
}
