/* ============================================================
   VANESSOR.FR — Aube Mystique
   Voyance intuitive & bienveillante par téléphone
   ============================================================ */

/* --- Reset & base --------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

:root {
  /* Palette Aube mystique */
  --blanc-opale: #faf8f5;
  --opale-clair: #f5f0e8;
  --lavande-aube: #ebe5f2;
  --lavande-pale: #f3eef8;
  --rose-poudre: #d4a5b8;
  --rose-poudre-clair: #e8c5d2;
  --rose-poudre-fonce: #b48595;
  --or-rose: #c9a17a;
  --or-rose-clair: #e0c4a5;
  --or-rose-fonce: #a8835f;
  --bleu-nuit-doux: #2a3556;
  --bleu-nuit-clair: #4a5578;
  --bleu-nuit-fonce: #1a2340;
  --texte-fonce: #2a2535;
  --texte-medium: #5a5570;
  --texte-clair: #8a85a0;
  --vert-dispo: #6fa86b;
  --vert-dispo-clair: #8ec48a;

  /* Typo */
  --serif-titre: 'Cinzel', 'Times New Roman', serif;
  --serif-corps: 'Cormorant Garamond', 'Georgia', serif;
  --italique-sig: 'Italianno', cursive;

  /* Tailles */
  --max-width: 1180px;
  --max-width-text: 760px;
  --radius: 6px;
  --radius-lg: 12px;
  --shadow-soft: 0 4px 20px rgba(42, 53, 86, 0.08);
  --shadow-card: 0 6px 24px rgba(42, 53, 86, 0.10);
  --shadow-or: 0 4px 16px rgba(201, 161, 122, 0.25);
}

html { font-size: 18px; }
body {
  font-family: var(--serif-corps);
  color: var(--texte-fonce);
  background: var(--blanc-opale);
  line-height: 1.75;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* Fond ciel d'aube avec étoiles scintillantes (très subtiles) */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at top, rgba(212, 165, 184, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse at bottom right, rgba(201, 161, 122, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse at bottom left, rgba(42, 53, 86, 0.04) 0%, transparent 50%);
  z-index: -2;
  pointer-events: none;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 15% 22%, rgba(201, 161, 122, 0.6), transparent),
    radial-gradient(1px 1px at 67% 15%, rgba(212, 165, 184, 0.5), transparent),
    radial-gradient(1px 1px at 82% 48%, rgba(201, 161, 122, 0.4), transparent),
    radial-gradient(1px 1px at 28% 71%, rgba(212, 165, 184, 0.4), transparent),
    radial-gradient(1px 1px at 45% 88%, rgba(201, 161, 122, 0.5), transparent);
  background-size: 100% 100%;
  z-index: -1;
  pointer-events: none;
  animation: scintille 9s ease-in-out infinite;
  opacity: 0.7;
}

@keyframes scintille {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 0.85; }
}

/* --- Typographie --------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--serif-titre);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--bleu-nuit-doux);
  line-height: 1.3;
  margin-bottom: 0.6em;
}
h1 { font-size: clamp(1.8rem, 4.5vw, 2.6rem); margin-bottom: 0.5em; }
h2 { font-size: clamp(1.5rem, 3.2vw, 2rem); margin-top: 2em; }
h3 { font-size: clamp(1.2rem, 2.4vw, 1.45rem); margin-top: 1.6em; color: var(--rose-poudre-fonce); }
h4 { font-size: 1.15rem; margin-top: 1.3em; color: var(--or-rose-fonce); }

p { margin-bottom: 1.1em; }
p + p { margin-top: 0; }

a { color: var(--rose-poudre-fonce); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--bleu-nuit-doux); }

em, i { font-style: italic; color: var(--bleu-nuit-clair); }
strong, b { font-weight: 600; color: var(--bleu-nuit-doux); }

ul, ol { padding-left: 1.5em; margin-bottom: 1.1em; }
li { margin-bottom: 0.4em; }

blockquote {
  border-left: 3px solid var(--or-rose);
  padding: 0.6em 1.2em;
  margin: 1.4em 0;
  background: var(--opale-clair);
  font-style: italic;
  color: var(--bleu-nuit-clair);
  border-radius: 0 var(--radius) var(--radius) 0;
}

/* --- Container & layout -------------------------------------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.2rem;
}
.container-text {
  max-width: var(--max-width-text);
  margin: 0 auto;
}

/* --- Header sticky ------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 245, 0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201, 161, 122, 0.18);
  box-shadow: var(--shadow-soft);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1.2rem;
  max-width: var(--max-width);
  margin: 0 auto;
  gap: 1rem;
}

/* Brand : croissant de lune CSS pur en or rose */
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  font-family: var(--serif-titre);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--bleu-nuit-doux);
}
.brand:hover { color: var(--rose-poudre-fonce); }
.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--or-rose-clair) 0%, var(--or-rose) 40%, var(--rose-poudre-fonce) 100%);
  position: relative;
  box-shadow: 0 0 14px rgba(201, 161, 122, 0.4);
  flex-shrink: 0;
}
.brand-mark::after {
  content: "☽";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blanc-opale);
  font-size: 1.1rem;
  font-weight: bold;
}

/* Navigation desktop */
.site-nav { display: flex; gap: 1.4rem; align-items: center; }
.site-nav a {
  color: var(--bleu-nuit-doux);
  text-decoration: none;
  font-size: 0.95rem;
  font-family: var(--serif-titre);
  letter-spacing: 0.03em;
  padding: 0.6rem 0.3rem;
  transition: color 0.2s;
  position: relative;
}
.site-nav a:hover { color: var(--rose-poudre-fonce); }
.site-nav a::after {
  content: "";
  position: absolute;
  bottom: 0.3rem;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--or-rose);
  transition: width 0.25s, left 0.25s;
}
.site-nav a:hover::after { width: 70%; left: 15%; }

/* CTA compact header */
.cta-compact {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.85rem;
  background: linear-gradient(135deg, var(--bleu-nuit-doux), var(--bleu-nuit-fonce));
  color: var(--blanc-opale);
  text-decoration: none;
  border-radius: var(--radius);
  font-family: var(--serif-titre);
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  box-shadow: var(--shadow-or);
  min-height: 44px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.cta-compact .tarif-mini {
  font-size: 0.72rem;
  opacity: 0.85;
  letter-spacing: 0.02em;
}
.cta-compact:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(201, 161, 122, 0.35);
  color: var(--blanc-opale);
}
.cta-compact .pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--vert-dispo-clair);
  box-shadow: 0 0 0 0 rgba(142, 196, 138, 0.7);
  animation: pulse-vert 2s infinite;
}
@keyframes pulse-vert {
  0% { box-shadow: 0 0 0 0 rgba(142, 196, 138, 0.7); }
  70% { box-shadow: 0 0 0 8px rgba(142, 196, 138, 0); }
  100% { box-shadow: 0 0 0 0 rgba(142, 196, 138, 0); }
}

/* Burger menu CSS-only */
.burger-toggle { display: none; }
.burger-label {
  display: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--or-rose);
  border-radius: var(--radius);
  background: var(--blanc-opale);
}
.burger-icon {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--bleu-nuit-doux);
  position: relative;
}
.burger-icon::before, .burger-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: var(--bleu-nuit-doux);
}
.burger-icon::before { top: -7px; }
.burger-icon::after { top: 7px; }

@media (max-width: 820px) {
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--blanc-opale);
    border-bottom: 1px solid var(--or-rose);
    padding: 1rem 1.2rem;
    gap: 0;
    box-shadow: var(--shadow-card);
  }
  .site-nav a {
    padding: 0.9rem 0.3rem;
    border-bottom: 1px solid var(--lavande-aube);
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  .site-nav a:last-child { border-bottom: none; }
  .burger-label { display: inline-flex; }
  .burger-toggle:checked ~ .site-nav { display: flex; }
  .cta-compact { padding: 0.5rem 0.7rem; font-size: 0.78rem; }
  .cta-compact span.tarif-mini { display: none; }
  .header-inner { gap: 0.5rem; }
  .brand { font-size: 1.15rem; }
}

/* --- Breadcrumb ---------------------------------------------- */
.breadcrumb {
  padding: 1rem 0 0.4rem;
  font-size: 0.85rem;
  color: var(--texte-clair);
}
.breadcrumb a {
  color: var(--bleu-nuit-clair);
  text-decoration: none;
}
.breadcrumb a:hover { color: var(--rose-poudre-fonce); text-decoration: underline; }
.breadcrumb-sep { margin: 0 0.4rem; color: var(--or-rose); }

/* --- Hero ---------------------------------------------------- */
.hero {
  text-align: center;
  padding: 2.5rem 0 1.5rem;
  position: relative;
}
.hero-ornament {
  font-size: 1.3rem;
  color: var(--or-rose);
  letter-spacing: 0.5em;
  margin-bottom: 0.8rem;
  opacity: 0.85;
}
.hero h1 {
  max-width: 820px;
  margin: 0 auto 0.6em;
  background: linear-gradient(135deg, var(--bleu-nuit-doux) 0%, var(--rose-poudre-fonce) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-lede {
  font-family: var(--italique-sig);
  font-size: clamp(1.4rem, 2.6vw, 1.85rem);
  color: var(--bleu-nuit-clair);
  font-style: normal;
  max-width: 620px;
  margin: 0 auto 1rem;
  line-height: 1.4;
}

/* --- Double CTA téléphonique --------------------------------- */
.cta-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin: 2rem auto;
  max-width: 820px;
}
@media (max-width: 720px) {
  .cta-block { grid-template-columns: 1fr; gap: 0.9rem; }
}

.cta-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.6rem 1.2rem;
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: transform 0.25s, box-shadow 0.25s;
  min-height: 160px;
  position: relative;
  overflow: hidden;
}
.cta-card:hover { transform: translateY(-4px); }
.cta-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -30%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  opacity: 0.15;
  pointer-events: none;
}

.cta-card-audiotel {
  background: linear-gradient(135deg, var(--lavande-aube), var(--lavande-pale));
  color: var(--bleu-nuit-doux);
  border: 1px solid var(--or-rose-clair);
  box-shadow: var(--shadow-card);
}
.cta-card-audiotel::before { background: var(--or-rose); }
.cta-card-audiotel:hover { color: var(--bleu-nuit-doux); box-shadow: 0 10px 28px rgba(201, 161, 122, 0.25); }

.cta-card-cb {
  background: linear-gradient(135deg, var(--bleu-nuit-doux), var(--bleu-nuit-fonce));
  color: var(--blanc-opale);
  border: 1px solid var(--or-rose);
  box-shadow: var(--shadow-card);
}
.cta-card-cb::before { background: var(--rose-poudre); }
.cta-card-cb:hover { color: var(--blanc-opale); box-shadow: 0 10px 28px rgba(42, 53, 86, 0.35); }

.cta-card-label {
  font-family: var(--serif-titre);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 0.4rem;
}
.cta-card-num {
  font-family: var(--serif-titre);
  font-size: clamp(1.4rem, 3.5vw, 1.9rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 0.3rem;
}
.cta-card-tarif {
  font-size: 0.95rem;
  font-style: italic;
  opacity: 0.9;
}

/* --- Réponse rapide (featured snippet) ----------------------- */
.reponse-rapide {
  background: linear-gradient(135deg, var(--opale-clair), var(--blanc-opale));
  border-left: 4px solid var(--or-rose);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 1.2rem 1.5rem;
  margin: 2rem 0;
  max-width: var(--max-width-text);
  margin-left: auto;
  margin-right: auto;
  box-shadow: var(--shadow-soft);
}
.reponse-rapide-titre {
  font-family: var(--serif-titre);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--or-rose-fonce);
  margin-bottom: 0.5rem;
}
.reponse-rapide p { margin-bottom: 0; line-height: 1.65; }
.reponse-rapide strong { color: var(--bleu-nuit-doux); }

/* --- Contenu principal --------------------------------------- */
.contenu {
  max-width: var(--max-width-text);
  margin: 0 auto;
  padding: 1rem 0 2rem;
}
.contenu section { margin-bottom: 2.5rem; }

/* Encarts */
.encart {
  background: var(--lavande-pale);
  border-radius: var(--radius-lg);
  padding: 1.2rem 1.5rem;
  margin: 1.5rem 0;
  border: 1px solid rgba(201, 161, 122, 0.15);
}
.encart-titre {
  font-family: var(--serif-titre);
  font-size: 1rem;
  letter-spacing: 0.06em;
  color: var(--rose-poudre-fonce);
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.encart-titre::before { content: "✦"; color: var(--or-rose); }

.encart-attention {
  background: linear-gradient(135deg, #fef3f0, #fdebe5);
  border-left: 3px solid var(--rose-poudre-fonce);
}
.encart-attention .encart-titre::before { content: "⚠"; }

/* Tableaux responsive */
.table-wrap {
  width: 100%;
  overflow-x: auto;
  margin: 1.5rem 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
table {
  width: 100%;
  border-collapse: collapse;
  background: var(--blanc-opale);
  display: block;
  overflow-x: auto;
  white-space: nowrap;
}
@media (min-width: 720px) {
  table { display: table; white-space: normal; }
}
th, td {
  padding: 0.8rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--lavande-aube);
}
th {
  background: var(--lavande-aube);
  font-family: var(--serif-titre);
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--bleu-nuit-doux);
  letter-spacing: 0.03em;
}
tr:last-child td { border-bottom: none; }
tr:nth-child(even) td { background: var(--opale-clair); }

/* Ornement divider */
.ornament-divider {
  text-align: center;
  font-size: 1.2rem;
  color: var(--or-rose);
  letter-spacing: 1em;
  margin: 3rem 0;
  opacity: 0.7;
  padding-left: 1em;
}

/* --- FAQ accordéon ------------------------------------------- */
.faq-section { max-width: var(--max-width-text); margin: 2rem auto; }
.faq-section h2 { text-align: center; margin-bottom: 1.5rem; }

details.faq-item {
  background: var(--blanc-opale);
  border: 1px solid var(--lavande-aube);
  border-radius: var(--radius);
  margin-bottom: 0.8rem;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: box-shadow 0.2s;
}
details.faq-item[open] { box-shadow: var(--shadow-card); border-color: var(--or-rose-clair); }

details.faq-item summary {
  padding: 1.1rem 1.4rem;
  cursor: pointer;
  font-family: var(--serif-titre);
  font-size: 1.05rem;
  color: var(--bleu-nuit-doux);
  list-style: none;
  position: relative;
  padding-right: 3rem;
  min-height: 44px;
  display: flex;
  align-items: center;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1.4rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--or-rose);
  font-size: 1.5rem;
  transition: transform 0.2s;
}
details.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }

details.faq-item .faq-answer {
  padding: 0 1.4rem 1.2rem;
  color: var(--texte-medium);
}

/* --- Maillage : cartes "Pour aller plus loin" ---------------- */
.maillage {
  max-width: var(--max-width);
  margin: 3rem auto;
  padding: 0 1.2rem;
}
.maillage h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}
.maillage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
}
.maillage-card {
  display: block;
  padding: 1.3rem;
  background: var(--blanc-opale);
  border-radius: var(--radius-lg);
  border: 1px solid var(--lavande-aube);
  text-decoration: none;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  color: var(--bleu-nuit-doux);
}
.maillage-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--or-rose);
  color: var(--bleu-nuit-doux);
}
.maillage-card-titre {
  font-family: var(--serif-titre);
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
  color: var(--rose-poudre-fonce);
}
.maillage-card-desc {
  font-size: 0.9rem;
  color: var(--texte-medium);
  line-height: 1.5;
}

/* --- Footer 7 colonnes --------------------------------------- */
.site-footer {
  background: linear-gradient(180deg, var(--bleu-nuit-doux), var(--bleu-nuit-fonce));
  color: var(--lavande-pale);
  padding: 3rem 0 0;
  margin-top: 4rem;
  border-top: 1px solid var(--or-rose);
}
.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
}
.footer-col h4 {
  font-family: var(--serif-titre);
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--or-rose-clair);
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(201, 161, 122, 0.3);
  padding-bottom: 0.4rem;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a {
  color: var(--lavande-pale);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
  opacity: 0.85;
}
.footer-col a:hover { color: var(--rose-poudre-clair); opacity: 1; }

.footer-bandeau {
  background: var(--bleu-nuit-fonce);
  color: var(--texte-clair);
  padding: 1.4rem 1.2rem 4.5rem;
  margin-top: 2.5rem;
  text-align: center;
  font-size: 0.82rem;
  line-height: 1.6;
  border-top: 1px solid rgba(201, 161, 122, 0.2);
}
.footer-bandeau strong { color: var(--or-rose-clair); }
.footer-bandeau a { color: var(--rose-poudre-clair); }
@media (min-width: 820px) {
  .footer-bandeau { padding-bottom: 1.4rem; }
}

/* --- Sticky CTA mobile uniquement ---------------------------- */
.sticky-mobile {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--blanc-opale);
  border-top: 1px solid var(--or-rose);
  padding: 0.5rem 0.7rem;
  z-index: 99;
  box-shadow: 0 -4px 16px rgba(42, 53, 86, 0.15);
  gap: 0.5rem;
}
.sticky-mobile a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  text-decoration: none;
  border-radius: var(--radius);
  min-height: 56px;
  font-family: var(--serif-titre);
}
.sticky-mobile .audiotel {
  background: linear-gradient(135deg, var(--lavande-aube), var(--lavande-pale));
  color: var(--bleu-nuit-doux);
  border: 1px solid var(--or-rose);
}
.sticky-mobile .cb {
  background: linear-gradient(135deg, var(--bleu-nuit-doux), var(--bleu-nuit-fonce));
  color: var(--blanc-opale);
}
.sticky-mobile .label {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.8;
}
.sticky-mobile .num {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

@media (max-width: 820px) {
  .sticky-mobile { display: flex; }
  body { padding-bottom: 72px; }
}

/* --- Utilitaires --------------------------------------------- */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.text-center { text-align: center; }
.mt-3 { margin-top: 3rem; }
.mb-3 { margin-bottom: 3rem; }

/* --- Badge Arcep (mention surtaxé) --------------------------- */
.arcep-block {
  margin: 1.8rem auto 1.2rem;
  text-align: center;
  max-width: 320px;
}
.arcep-label {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: rgba(201, 161, 122, 0.7);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.arcep-badge {
  display: inline-flex;
  align-items: stretch;
  width: 200px;
  background: #d40075;
  color: #ffffff;
  text-decoration: none;
  border-radius: 4px;
  overflow: hidden;
  opacity: 0.85;
  transition: opacity 0.2s ease, transform 0.2s ease;
  position: relative;
  box-shadow: 0 2px 8px rgba(212, 0, 117, 0.18);
}
.arcep-badge:hover,
.arcep-badge:focus {
  opacity: 1;
  transform: translateY(-1px);
}
.arcep-pointe {
  width: 14px;
  background: #d40075;
  position: relative;
}
.arcep-pointe::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -1px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 22px solid transparent;
  border-bottom: 22px solid transparent;
  border-left: 14px solid #ffffff;
}
.arcep-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.6rem 0.5rem 0.4rem;
  background: #d40075;
  line-height: 1.15;
  text-align: center;
}
.arcep-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 0.15rem;
}
.arcep-prix {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.25;
}
