/* ==========================================================================
   Vini Bijoux - CSS consolide (Accueil + Ateliers + Visites)
   Charte officielle 26/05/2026 - sauge / rose / beige / glace
   Nettoye des protections anti-copie (user-select / pointer-events / etc.)
   ========================================================================== */

:root {
  --sage:       #ABCABF;
  --sage-deep:  #8FB1A4;
  --rose:       #FFF2EE;
  --rose-deep:  #F4D9D0;
  --beige:      #DDD1C1;
  --beige-deep: #C7B8A4;
  --ice:        #E6FBFD;

  --paper:       #FDFBF7;
  --paper-deep:  #F5EFE7;
  --stone:       var(--beige);
  --stone-deep:  var(--beige-deep);
  --earth:       #6F6354;
  --copper:      var(--sage-deep);
  --copper-lt:   var(--sage);
  --copper-soft: var(--rose);

  --ink:      #2E2A24;
  --ink-soft: #6F6354;
  --muted:    #6F6354;
  --line:     rgba(46, 42, 36, 0.10);
  --shadow:      0 4px 20px rgba(46, 42, 36, 0.06);
  --shadow-lift: 0 10px 30px rgba(46, 42, 36, 0.10);
  --accent: var(--sage-deep);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.5;
  font-size: 16px;
  min-height: 100vh;
  background-image:
    radial-gradient(circle at 12% 8%, rgba(171, 202, 191, 0.30) 0%, transparent 45%),
    radial-gradient(circle at 88% 16%, rgba(230, 251, 253, 0.45) 0%, transparent 40%),
    radial-gradient(circle at 80% 90%, rgba(255, 242, 238, 0.55) 0%, transparent 50%);
}

.container {
  max-width: 460px;
  margin: 0 auto;
  padding: 32px 20px 24px;
  position: relative;
}
.container.wide { max-width: 500px; padding: 28px 20px 60px; }

/* =============== BACK LINK (pages secondaires) =============== */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  margin-bottom: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--sage-deep);
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--line);
  border-radius: 999px;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background .15s ease, transform .15s ease, gap .15s ease;
  -webkit-tap-highlight-color: transparent;
}
.back-link:hover,
.back-link:focus-visible {
  background: #fff;
  transform: translateX(-2px);
  gap: 10px;
  outline: none;
}
.back-link svg { width: 14px; height: 14px; }

/* =============== HEADER =============== */
.header {
  text-align: center;
  padding: 16px 0 28px;
  position: relative;
}
.header.compact { padding: 4px 0 24px; }

.avatar-link { display: inline-block; text-decoration: none; line-height: 0; }
.wordmark-link { display: block; text-decoration: none; }

.avatar {
  width: 104px;
  height: 104px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #FFF2EE 0%, #ABCABF 55%, #8FB1A4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 0 4px var(--paper),
    0 0 0 5px var(--sage),
    var(--shadow-lift);
  position: relative;
  overflow: hidden;
}
.avatar-img {
  width: 64%;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.94;
  position: relative;
  z-index: 1;
}
.avatar::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  z-index: 0;
  background: radial-gradient(circle at 35% 30%, rgba(255,255,255,0.25), transparent 50%);
}

.handle {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-deep);
  font-weight: 600;
  margin-bottom: 8px;
}

.name {
  font-family: 'Benedict', 'Allura', cursive;
  font-size: 3.6rem;
  font-weight: 400;
  letter-spacing: 0.005em;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1;
}

.name-img,
.wordmark-img {
  display: block;
  width: clamp(220px, 70vw, 320px);
  height: auto;
  max-height: 140px;
  object-fit: contain;
  margin: 0 auto 10px;
}

.bio,
.tagline {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  color: var(--muted);
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  line-height: 1.5;
  max-width: 360px;
  margin: 0 auto;
}
.bio strong,
.tagline strong {
  font-family: 'DM Sans', sans-serif;
  color: var(--ink);
  font-weight: 600;
}

/* =============== TAGS =============== */
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin: 18px 0 4px;
}
.tag {
  font-size: 0.74rem;
  padding: 5px 11px;
  background: var(--stone);
  color: var(--earth);
  border-radius: 999px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* =============== BOUTONS HUB =============== */
.links {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.link-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  min-height: 64px;
  padding: 14px 18px;
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--ink);
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  position: relative;
}
.link-btn:hover,
.link-btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lift);
  border-color: var(--copper-lt);
  outline: none;
}
.link-btn:active { transform: translateY(0); }

.link-icon {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--copper-soft);
  color: var(--copper);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}
.link-icon svg { width: 22px; height: 22px; }

.link-body { flex: 1; min-width: 0; }

.link-title {
  font-family: 'Cormorant', serif;
  font-weight: 600;
  font-size: 1.22rem;
  color: var(--ink);
  letter-spacing: 0;
  line-height: 1.2;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.link-sub {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 2px;
  line-height: 1.35;
}

.link-arrow {
  flex: 0 0 auto;
  color: var(--earth);
  opacity: 0.5;
  transition: transform .18s ease, opacity .18s ease;
}
.link-btn:hover .link-arrow {
  transform: translateX(3px);
  opacity: 1;
  color: var(--copper);
}

/* Variantes */
.link-btn.featured {
  background: linear-gradient(160deg, var(--sage) 0%, var(--sage-deep) 100%);
  border-color: var(--sage-deep);
  box-shadow: 0 10px 30px rgba(143, 177, 164, 0.30);
}
.link-btn.featured .link-icon { background: rgba(255, 255, 255, 0.22); color: #FFFFFF; }
.link-btn.featured .link-title { color: #FFFFFF; }
.link-btn.featured .link-sub { color: rgba(255, 255, 255, 0.85); }
.link-btn.featured .link-arrow { color: #FFFFFF; opacity: 0.85; }
.link-btn.featured .badge-soon,
.link-btn.featured .badge-new { background: #FFFFFF; color: var(--ink); }
.link-btn.featured .badge-free { background: #FFFFFF; color: #1E5C3A; }

.badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.72rem;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 800;
}
.badge-soon { background: var(--copper); color: #FFF; }
.badge-free { background: #2E7D52; color: #FFF; }
.badge-new  { background: var(--earth); color: #FFFFFF; }

/* =============== SEPARATEUR =============== */
.divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 28px 4px 16px;
  color: var(--earth);
  font-family: 'Italiana', 'Cormorant', serif;
  font-style: italic;
  font-size: 0.86rem;
  letter-spacing: 0.02em;
}
.divider::before, .divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

/* =============== HERO (pages secondaires) =============== */
.hero {
  text-align: center;
  margin: 36px 0 28px;
  padding: 28px 16px;
  background: linear-gradient(160deg, var(--sage) 0%, var(--sage-deep) 100%);
  border-radius: 24px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 18% 26%, rgba(255,255,255,0.18) 0%, transparent 35%),
    radial-gradient(circle at 82% 70%, rgba(255,242,238,0.20) 0%, transparent 40%);
}
.hero-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.74rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.85;
  margin-bottom: 8px;
  position: relative; z-index: 1;
}
.hero-title {
  font-family: 'Italiana', 'Cormorant', serif;
  font-size: clamp(2.1rem, 5.6vw, 2.8rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.02em;
  position: relative; z-index: 1;
  -webkit-text-stroke: 0.45px currentColor;
  text-rendering: optimizeLegibility;
}
.hero-title em { font-style: italic; font-weight: 400; }
.hero-sub {
  margin-top: 12px;
  font-size: 0.96rem;
  opacity: 0.92;
  max-width: 30em;
  margin-left: auto; margin-right: auto;
  position: relative; z-index: 1;
}

/* =============== SECTION =============== */
.section { margin-top: 36px; }
.section-title {
  font-family: 'Italiana', 'Cormorant', serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
  -webkit-text-stroke: 0.45px currentColor;
  text-rendering: optimizeLegibility;
}
.section-title em { font-style: italic; font-weight: 400; }
.section-title.centered { text-align: center; margin-bottom: 8px; }
.section-intro {
  color: var(--ink-soft);
  font-size: 0.94rem;
  margin-bottom: 20px;
  max-width: 38em;
}
.section-intro.centered { text-align: center; margin-left: auto; margin-right: auto; }

/* =============== CARDS ATELIERS =============== */
.grid { display: grid; gap: 14px; }

.card {
  background: #fff;
  border-radius: 18px;
  padding: 22px 22px 22px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.card:hover,
.card:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lift);
  border-color: var(--sage);
  outline: none;
}
.card:active { transform: translateY(0); transition: transform 0.1s ease; }

.card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--accent, var(--sage));
}
.card.rose::before  { background: var(--rose-deep); }
.card.beige::before { background: var(--beige-deep); }
.card.ice::before   { background: #B5E2E8; }
.card.sage::before  { background: var(--sage); }

.card-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 10px;
}
.card-title {
  font-family: 'Cormorant', serif;
  font-size: 1.32rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
}
.card-price {
  font-family: 'Cormorant', serif;
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--sage-deep);
  white-space: nowrap;
}
.card-price.muted {
  color: var(--ink-soft);
  font-size: 1rem;
  font-style: italic;
}

.card-meta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  background: var(--beige);
  padding: 4px 10px;
  border-radius: 999px;
  width: fit-content;
  margin-bottom: 12px;
  text-transform: uppercase;
  font-weight: 600;
}
.card-meta.sage { background: var(--sage); color: #fff; }
.card-meta.rose { background: var(--rose-deep); color: var(--ink); }
.card-meta.ice  { background: var(--ice); color: var(--ink); }

.card-desc {
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.55;
  flex: 1;
}
.card-desc strong { color: var(--ink); font-weight: 600; }

.card-foot {
  margin-top: 14px;
  font-size: 0.85rem;
  color: var(--sage-deep);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .15s ease, color .15s ease;
}
.card-foot .arrow { display: inline-block; transition: transform .15s ease; }
.card:hover .card-foot { gap: 10px; }
.card:hover .card-foot .arrow { transform: translateX(2px); }
.card-foot.muted { color: var(--ink-soft); font-weight: 500; font-style: italic; }

/* Stack carte + visio */
.card-stack { display: flex; flex-direction: column; }
.card-stack .card { border-radius: 18px 18px 0 0; }
.visio-alt {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--line);
  border-top: none;
  border-radius: 0 0 18px 18px;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background .15s ease, color .15s ease, gap .15s ease;
  -webkit-tap-highlight-color: transparent;
}
.visio-alt:hover,
.visio-alt:focus-visible {
  background: #fff;
  color: var(--sage-deep);
  gap: 10px;
  outline: none;
}
.visio-alt svg { width: 14px; height: 14px; }

.ribbon {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--rose-deep);
  color: var(--ink);
  margin-left: 8px;
  vertical-align: middle;
}
.ribbon.free { background: var(--sage); color: #fff; }

/* =============== STEPS (Visites) =============== */
.steps { display: grid; gap: 14px; }
.step {
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}
.step::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--accent, var(--sage));
}
.step.s1::before { background: var(--sage); }
.step.s2::before { background: var(--rose-deep); }
.step.s3::before { background: var(--beige-deep); }
.step.s4::before { background: #B5E2E8; }
.step.s5::before { background: var(--sage-deep); }

.step-num {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--sage-deep);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Italiana', serif;
  font-size: 1.35rem;
  font-weight: 400;
  -webkit-text-stroke: 0.6px currentColor;
  text-rendering: optimizeLegibility;
}
.step.s2 .step-num { background: var(--rose-deep); color: var(--ink); }
.step.s3 .step-num { background: var(--beige-deep); color: var(--ink); }
.step.s4 .step-num { background: #6FBFC8; color: #fff; }

.step-body { flex: 1; }
.step-title {
  font-family: 'Cormorant', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
  line-height: 1.25;
}
.step-desc {
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.55;
}
.step-desc strong { color: var(--ink); font-weight: 600; }

/* =============== PERKS =============== */
.perks { display: grid; gap: 12px; margin-top: 8px; }
.perk {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px 18px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--line);
}
.perk-icon {
  flex: 0 0 28px;
  width: 28px; height: 28px;
  border-radius: 8px;
  background: var(--rose);
  color: var(--sage-deep);
  display: flex; align-items: center; justify-content: center;
}
.perk-icon svg { width: 16px; height: 16px; }
.perk-text {
  font-size: 0.94rem;
  color: var(--ink);
  line-height: 1.5;
}
.perk-text strong { font-weight: 600; }

/* =============== PRACTICALS =============== */
.practicals {
  background: var(--rose);
  border-radius: 18px;
  padding: 22px 22px 8px;
  margin-top: 8px;
}
.practicals dl { display: grid; gap: 14px; }
.practicals dt {
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-deep);
  font-weight: 700;
  margin-bottom: 2px;
}
.practicals dd {
  font-family: 'Cormorant', serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.4;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(46, 42, 36, 0.08);
}
.practicals dd:last-of-type { border-bottom: none; }

/* =============== CTA BAND =============== */
.cta-band {
  margin-top: 40px;
  padding: 32px 24px;
  background: linear-gradient(135deg, var(--rose) 0%, var(--beige) 60%, var(--ice) 100%);
  border-radius: 22px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.45) 0%, transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(171,202,191,0.30) 0%, transparent 40%);
}
.cta-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.74rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--sage-deep);
  font-weight: 700;
  margin-bottom: 8px;
  position: relative; z-index: 1;
}
.cta-title {
  font-family: 'Italiana', 'Cormorant', serif;
  font-size: 1.9rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.25;
  max-width: 22em;
  margin: 0 auto 18px;
  position: relative; z-index: 1;
  letter-spacing: 0.015em;
  -webkit-text-stroke: 0.45px currentColor;
  text-rendering: optimizeLegibility;
}
.cta-title em { font-style: italic; font-weight: 400; }
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  position: relative; z-index: 1;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--sage-deep);
  color: #fff;
  box-shadow: var(--shadow);
}
.btn-primary:hover { background: #7F9F92; transform: translateY(-1px); box-shadow: var(--shadow-lift); }
.btn-ghost {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { background: var(--paper); transform: translateY(-1px); }

/* =============== FOOTER =============== */
.footer {
  text-align: center;
  margin-top: 36px;
  padding: 24px 0 16px;
}
.footer-pierre {
  width: 28px;
  height: 28px;
  margin: 0 auto 14px;
  border-radius: 50% 40% 50% 40%;
  background: radial-gradient(circle at 35% 30%, #FFFFFF 0%, #F4D9D0 50%, #C7B8A4 100%);
  transform: rotate(-12deg);
  opacity: 0.85;
  box-shadow: 0 2px 8px rgba(46, 42, 36, 0.08);
}
.footer-text {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
}
.footer-text a {
  color: var(--sage-deep);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid var(--sage);
  padding-bottom: 1px;
}
.footer-legal {
  margin-top: 18px;
  border-radius: 12px;
  padding: 4px 0;
}
.footer-legal summary {
  cursor: pointer;
  color: var(--muted);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  list-style: none;
  padding: 6px 0;
  text-transform: uppercase;
  font-weight: 600;
}
.footer-legal summary::-webkit-details-marker { display: none; }
.footer-legal[open] summary { color: var(--ink); }
.footer-legal-content {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.6;
  margin-top: 8px;
  text-align: left;
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--line);
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}

/* =============== DESKTOP =============== */
@media (min-width: 760px) {
  .container { padding: 56px 20px 32px; }
  .container.wide { padding: 48px 20px 60px; }
  .name { font-size: 4.4rem; margin-bottom: 14px; }
  .avatar { width: 120px; height: 120px; }
  .link-btn { min-height: 72px; padding: 16px 22px; }
  .link-title { font-size: 1.32rem; }
}

/* (media query mobile retiree : les titres sont uniformement en weight 500
    sur desktop et mobile, plus besoin de surcharger) */

/* =============== TÉLÉPHONE OBFUSQUÉ =============== */
.vbj-tel-link { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.vbj-tel-link:hover { color: var(--sage-deep); }

/* =============== MODAL CONTACT =============== */
.vbj-modal[hidden] { display: none; }
.vbj-modal {
  position: fixed; inset: 0; z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
  animation: vbjFadeIn .2s ease;
}
@keyframes vbjFadeIn { from { opacity: 0; } to { opacity: 1; } }

.vbj-modal-overlay {
  position: absolute; inset: 0;
  background: rgba(46, 42, 36, 0.55);
  backdrop-filter: blur(4px);
}

.vbj-modal-card {
  position: relative;
  width: 100%; max-width: 460px;
  max-height: calc(100vh - 32px);
  overflow-y: auto;
  background: var(--paper);
  border-radius: 18px;
  padding: 28px 24px 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
  animation: vbjSlideUp .25s ease;
}
@keyframes vbjSlideUp { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

.vbj-modal-x {
  position: absolute; top: 12px; right: 14px;
  width: 36px; height: 36px;
  border: 0; background: transparent;
  font-size: 1.6rem; line-height: 1;
  color: var(--ink-soft);
  cursor: pointer; border-radius: 50%;
  transition: background .15s ease, color .15s ease;
}
.vbj-modal-x:hover { background: var(--paper-deep); color: var(--ink); }

.vbj-modal-title {
  font-family: 'Italiana', 'Cormorant', serif;
  font-size: 1.7rem; font-weight: 400;
  color: var(--ink); margin-bottom: 4px;
  -webkit-text-stroke: 0.45px currentColor;
  text-rendering: optimizeLegibility;
}
.vbj-modal-sub {
  font-size: 0.92rem; color: var(--ink-soft);
  margin-bottom: 18px;
}

.vbj-form { display: flex; flex-direction: column; gap: 12px; }
.vbj-field { display: flex; flex-direction: column; gap: 4px; }
.vbj-field > span {
  font-size: 0.78rem; font-weight: 600;
  color: var(--ink); letter-spacing: 0.02em;
}
.vbj-field input,
.vbj-field textarea {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.96rem;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  width: 100%;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.vbj-field input:focus,
.vbj-field textarea:focus {
  outline: none;
  border-color: var(--sage-deep);
  box-shadow: 0 0 0 3px rgba(143,177,164,.18);
}
.vbj-field textarea { resize: vertical; min-height: 96px; }

.vbj-form-foot {
  display: flex; gap: 10px; justify-content: flex-end;
  margin-top: 8px; flex-wrap: wrap;
}
.vbj-form-foot .btn { flex: 1; min-width: 120px; }

.vbj-form-note {
  font-size: 0.74rem; color: var(--ink-soft);
  margin-top: 10px; text-align: center;
  font-style: italic;
}

/* Honeypot : hors écran mais focusable par les bots */
.vbj-hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  overflow: hidden;
}

/* Alertes (succès / erreurs) */
.vbj-alert {
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 0.92rem;
  margin-bottom: 14px;
  line-height: 1.4;
}
.vbj-alert-ok   { background: #E7F4ED; color: #1E5C3A; border: 1px solid #B6DBC4; }
.vbj-alert-warn { background: #FBEAE5; color: #8C2A12; border: 1px solid #F1B7A4; }

/* =============== EMAIL OBFUSQUÉ =============== */
.vbj-email-link { color: inherit; text-decoration: underline; text-underline-offset: 2px; cursor: pointer; }
.vbj-email-link:hover { color: var(--sage-deep); }

/* =============== PAGES LÉGALES =============== */
.legal-content {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.96rem;
  color: var(--ink);
  line-height: 1.7;
  padding: 8px 0 30px;
}
.legal-content h2 {
  font-family: 'Italiana', 'Cormorant', serif;
  font-size: 1.5rem; font-weight: 400;
  color: var(--ink);
  margin: 32px 0 8px;
  letter-spacing: 0.02em;
  -webkit-text-stroke: 0.4px currentColor;
  text-rendering: optimizeLegibility;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 {
  font-family: 'Cormorant', serif;
  font-size: 1.15rem; font-weight: 600;
  color: var(--ink);
  margin: 18px 0 6px;
}
.legal-content h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.96rem; font-weight: 700;
  color: var(--ink);
  margin: 14px 0 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.legal-content p { margin: 0 0 12px; }
.legal-content ul,
.legal-content ol { margin: 0 0 14px 22px; }
.legal-content li { margin-bottom: 6px; }
.legal-content strong { color: var(--ink); font-weight: 600; }
.legal-content em { font-style: italic; }
.legal-content a {
  color: var(--sage-deep);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-content a:hover { color: var(--earth); }
.legal-content blockquote {
  border-left: 3px solid var(--sage);
  padding: 8px 14px;
  margin: 14px 0;
  background: var(--paper-deep);
  border-radius: 4px;
  color: var(--ink-soft);
  font-style: italic;
}
.legal-content hr {
  border: 0; height: 1px;
  background: var(--line);
  margin: 24px 0;
}

/* =============== FOOTER - liens legaux =============== */
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  justify-content: center;
  margin-top: 14px;
  font-size: 0.78rem;
}
.footer-links a {
  color: var(--ink-soft);
  text-decoration: none;
  transition: color .15s ease;
}
.footer-links a:hover { color: var(--sage-deep); text-decoration: underline; }
.footer-links span { color: var(--ink-soft); opacity: 0.4; }
