/* Rencontre-Vegan.eu — système visuel public unifié */
:root {
  --rv-ink: #17211b;
  --rv-ink-soft: #526058;
  --rv-green: #17653a;
  --rv-green-dark: #0c4226;
  --rv-green-deep: #082f1d;
  --rv-green-soft: #e8f1e9;
  --rv-yellow: #f2be32;
  --rv-yellow-soft: #fff2bd;
  --rv-ivory: #f7f4ec;
  --rv-paper: #fffdf8;
  --rv-white: #ffffff;
  --rv-line: #dfe5dd;
  --rv-line-dark: rgba(23, 33, 27, 0.16);
  --rv-danger: #b42318;
  --rv-shadow-sm: 0 12px 34px rgba(17, 42, 28, 0.08);
  --rv-shadow-lg: 0 28px 70px rgba(9, 42, 24, 0.16);
  --rv-radius-sm: 12px;
  --rv-radius: 22px;
  --rv-radius-lg: 34px;
  --rv-container: 1180px;
  --rv-copy: 760px;
  --rv-transition: 180ms ease;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--rv-ink);
  background: var(--rv-paper);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.rv-menu-open { overflow: hidden; }

img, svg, video, canvas, iframe { max-width: 100%; }
img { display: block; height: auto; }
button, input, select, textarea { font: inherit; }
a { color: var(--rv-green); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--rv-green-dark); }

h1, h2, h3, h4 {
  margin: 0 0 0.55em;
  color: var(--rv-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.65rem, 5.2vw, 5.3rem); }
h2 { font-size: clamp(2rem, 3.4vw, 3.45rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.65rem); }
p { margin: 0 0 1.15em; }

::selection { color: var(--rv-white); background: var(--rv-green); }

:focus-visible {
  outline: 3px solid var(--rv-yellow);
  outline-offset: 4px;
  border-radius: 4px;
}

.container {
  width: min(100% - 48px, var(--rv-container));
  margin-inline: auto;
}

.rv-skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 10000;
  padding: 10px 16px;
  color: var(--rv-white);
  background: var(--rv-green-dark);
  border-radius: 999px;
  transform: translateY(-160%);
}

.rv-skip-link:focus { transform: translateY(0); }

.rv-kicker,
.subheading,
.rv-article-category {
  margin-bottom: 15px;
  color: var(--rv-green);
  font-size: 0.73rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.rv-kicker,
.rv-article-category {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.subheading { display: block; }

.rv-kicker::before {
  width: 22px;
  height: 2px;
  background: var(--rv-yellow);
  content: "";
}

.rv-button,
.btn,
.rv-nav-cta {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.91rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform var(--rv-transition), box-shadow var(--rv-transition), background var(--rv-transition);
}

.rv-button:hover,
.btn:hover,
.rv-nav-cta:hover { transform: translateY(-2px); }

.rv-button--primary,
.btn-primary,
.rv-nav-cta {
  color: var(--rv-white) !important;
  background: var(--rv-green);
  box-shadow: 0 12px 28px rgba(23, 101, 58, 0.2);
}

.rv-button--primary:hover,
.btn-primary:hover,
.rv-nav-cta:hover { background: var(--rv-green-dark); }

.rv-button--light {
  color: var(--rv-green-dark) !important;
  background: var(--rv-white);
  box-shadow: var(--rv-shadow-sm);
}

.rv-text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: inherit;
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
}

.rv-text-link span { color: var(--rv-green); transition: transform var(--rv-transition); }
.rv-text-link:hover span { transform: translateX(3px); }

/* Navigation */
.rv-navbar {
  position: relative;
  z-index: 1000;
  width: 100%;
  color: var(--rv-ink);
  background: rgba(255, 253, 248, 0.97);
  border-bottom: 1px solid rgba(23, 33, 27, 0.08);
  backdrop-filter: blur(18px);
}

.rv-navbar > .container {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.rv-brand { display: inline-flex; flex: 0 0 auto; align-items: center; }
.rv-brand img { width: 190px; max-height: 58px; object-fit: contain; }

.rv-nav-panel { margin-left: auto; }
.rv-nav-list {
  display: flex;
  align-items: center;
  gap: 26px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rv-nav-list a:not(.rv-nav-cta) {
  position: relative;
  color: var(--rv-ink);
  font-size: 0.84rem;
  font-weight: 750;
  text-decoration: none;
}

.rv-nav-list a:not(.rv-nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--rv-yellow);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--rv-transition);
}

.rv-nav-list a:not(.rv-nav-cta):hover::after { transform: scaleX(1); transform-origin: left; }
.rv-nav-cta { min-height: 44px; padding: 11px 18px; }

.rv-nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  color: var(--rv-ink);
  background: var(--rv-white);
  border: 1px solid var(--rv-line);
  border-radius: 50%;
  cursor: pointer;
}

.rv-nav-toggle span { width: 19px; height: 2px; background: currentColor; transition: var(--rv-transition); }
.rv-nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.rv-nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.rv-nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero */
.rv-hero {
  position: relative;
  padding: 38px 0 72px;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 15%, rgba(242, 190, 50, 0.2), transparent 23%),
    radial-gradient(circle at 92% 84%, rgba(23, 101, 58, 0.13), transparent 28%),
    var(--rv-ivory);
}

.rv-hero::after {
  position: absolute;
  right: -110px;
  bottom: -180px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(23, 101, 58, 0.18);
  border-radius: 50%;
  content: "";
}

.rv-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.82fr);
  align-items: start;
  gap: 28px;
}

.rv-hero-copy {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 620px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: clamp(34px, 6vw, 70px);
  overflow: hidden;
  color: var(--rv-white);
  background:
    linear-gradient(180deg, rgba(5, 34, 19, 0.12) 8%, rgba(5, 34, 19, 0.88) 100%),
    url("../images/blog/premier-rendez-vous-vegan.webp") center 42% / cover no-repeat;
  border-radius: var(--rv-radius-lg);
  box-shadow: var(--rv-shadow-lg);
}

.rv-hero-copy::before {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 72px;
  height: 72px;
  background: var(--rv-yellow);
  border-radius: 50% 50% 8px 50%;
  content: "";
  opacity: 0.94;
  transform: rotate(14deg);
}

.rv-hero-copy > * { position: relative; z-index: 1; }
.rv-hero-copy .rv-kicker { color: var(--rv-yellow-soft); }
.rv-hero-copy h1 { max-width: 780px; margin-bottom: 18px; color: var(--rv-white); font-size: clamp(3rem, 5.1vw, 5.4rem); }
.rv-hero-copy > p { max-width: 670px; margin-bottom: 28px; color: rgba(255,255,255,0.9); font-size: clamp(1.03rem, 1.6vw, 1.24rem); }
.rv-hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 20px; }
.rv-hero-copy .rv-text-link { color: var(--rv-white); }
.rv-hero-copy .rv-text-link span { color: var(--rv-yellow); }

.rv-trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 11px 22px;
  margin: 29px 0 0;
  padding: 0;
  color: rgba(255,255,255,0.88);
  font-size: 0.82rem;
  font-weight: 700;
  list-style: none;
}

.rv-trust-list li { display: flex; align-items: center; gap: 8px; }
.rv-trust-list li::before { width: 7px; height: 7px; background: var(--rv-yellow); border-radius: 50%; content: ""; }

.rv-form-panel {
  width: 100%;
  min-width: 0;
  padding: clamp(25px, 3vw, 38px);
  color: var(--rv-ink);
  background: var(--rv-white);
  border: 1px solid rgba(23, 33, 27, 0.09);
  border-radius: var(--rv-radius-lg);
  box-shadow: var(--rv-shadow-lg);
}

.rv-form-panel h2 { margin-bottom: 22px; font-size: clamp(1.65rem, 2.6vw, 2.35rem); }
.rv-form-panel > small { display: block; margin-top: 18px; color: var(--rv-ink-soft); font-size: 0.72rem; line-height: 1.55; }
.rv-form-panel #formuser { width: 100%; min-width: 0; min-height: 350px; }
.rv-form-panel #formuser:empty { background: linear-gradient(100deg, #eef1ed 20%, #f7f8f5 38%, #eef1ed 58%); background-size: 200% 100%; border-radius: 16px; animation: rv-shimmer 1.4s infinite linear; }
#formuser, #caruser, #caruser2, #loguser { max-width: 100%; }
#formuser *, #caruser *, #caruser2 * { max-width: 100% !important; box-sizing: border-box !important; }
#formuser iframe, #caruser iframe, #caruser2 iframe { width: 100% !important; max-width: 100% !important; border: 0; }
#loguser { display: inline-block; color: var(--rv-green); font-size: 0.86rem; font-weight: 800; }

@keyframes rv-shimmer { to { background-position-x: -200%; } }

/* Compatibilité structurelle des contenus historiques, sans Bootstrap */
.row { display: flex; flex-wrap: wrap; margin-inline: -12px; }
[class*="col-"] { min-width: 0; padding-inline: 12px; }
.col-md-12 { width: 100%; }
.col-md-8 { width: 66.666%; }
.col-md-7 { width: 58.333%; }
.col-md-6 { width: 50%; }
.col-md-4 { width: 33.333%; }
.col-md-3 { width: 25%; }
.d-flex { display: flex; }
.align-items-center { align-items: center; }
.align-self-stretch { align-self: stretch; }
.justify-content-center { justify-content: center; }
.text-center, [align="center"] { text-align: center; }
.no-gutters { margin: 0; }
.no-gutters > [class*="col-"] { padding: 0; }
.img { background-position: center; background-size: cover; }
.clear { clear: both; }
.imggg { width: 100%; height: auto; }

.rv-historical-content { position: relative; background: var(--rv-paper); }
.rv-historical-content > br,
.rv-historical-content > hr { display: none; }
.rv-historical-content .ftco-section,
.rv-historical-content > section { position: relative; padding: 84px 0; }
.rv-historical-content .ftco-section:nth-of-type(odd) { background: var(--rv-white); }
.rv-historical-content .ftco-section:nth-of-type(even) { background: var(--rv-ivory); }
.rv-historical-content .container { position: relative; z-index: 1; }
.rv-historical-content .heading-section { margin-inline: auto; }
.rv-historical-content .heading-section > p,
.rv-historical-content .heading-section > div > p,
.rv-historical-content .col-md-12 > div > p,
.rv-historical-content .col-md-12 > p { max-width: var(--rv-copy); margin-right: auto; margin-left: auto; color: var(--rv-ink-soft); text-align: left !important; }
.rv-historical-content h2 { max-width: 900px; margin-right: auto; margin-left: auto; }
.rv-historical-content h3 { margin-top: 32px; }
.rv-historical-content hr { width: 64px; margin: 44px auto; border: 0; border-top: 3px solid var(--rv-yellow); }
.rv-historical-content a:not(.btn) { overflow-wrap: anywhere; }

/* Gabarit premium commun aux anciennes pages, contenu historique conservé */
.rv-content-premium { overflow: hidden; }
.rv-content-premium > .row:first-of-type {
  width: min(100% - 48px, var(--rv-container));
  margin: 0 auto;
  padding-top: 26px;
}
.rv-content-premium [itemtype$="BreadcrumbList"] {
  display: inline-flex !important;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  padding: 9px 14px;
  color: var(--rv-ink-soft);
  background: rgba(255,255,255,0.78);
  border: 1px solid var(--rv-line);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 750;
}
.rv-content-premium [itemtype$="BreadcrumbList"] a { color: var(--rv-green-dark); text-decoration: none; }

.rv-content-premium > .services-section:first-of-type {
  padding: 70px 0 86px;
  background:
    radial-gradient(circle at 4% 15%, rgba(242,190,50,0.18), transparent 23%),
    radial-gradient(circle at 96% 88%, rgba(23,101,58,0.12), transparent 25%),
    var(--rv-ivory);
}
.rv-content-premium > .services-section:first-of-type > .container > div[align="center"] {
  padding: clamp(28px, 4vw, 50px);
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(23,33,27,0.08);
  border-radius: var(--rv-radius-lg);
  box-shadow: var(--rv-shadow-sm);
  backdrop-filter: blur(10px);
}
.rv-content-premium > .services-section:first-of-type .heading-section { margin-bottom: 0 !important; }
.rv-content-premium > .services-section:first-of-type .subheading {
  display: block;
  margin-bottom: 14px;
  color: var(--rv-green);
  font-size: 0;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.rv-content-premium > .services-section:first-of-type .subheading::before { content: "Profils à découvrir"; font-size: 0.72rem; }
.rv-content-premium > .services-section:first-of-type h2 {
  max-width: 820px;
  margin-bottom: 34px;
  font-size: clamp(2.15rem, 4vw, 3.65rem);
}
.rv-content-premium > .services-section:first-of-type #caruser {
  margin-top: 22px;
  padding-top: 6px;
}

.rv-content-premium > .ftco-section:nth-of-type(2) { padding: 108px 0; background: var(--rv-paper); }
.rv-content-premium > .ftco-section:nth-of-type(2) .container { width: min(100% - 48px, 1080px); }
.rv-content-premium > .ftco-section:nth-of-type(2) .col-md-12 > div[align="center"] {
  display: grid;
  grid-template-columns: minmax(225px, 0.48fr) minmax(0, 1fr);
  align-items: start;
  gap: 26px 58px;
  padding: clamp(34px, 6vw, 70px);
  text-align: left !important;
  background: var(--rv-white);
  border: 1px solid var(--rv-line);
  border-radius: var(--rv-radius-lg);
  box-shadow: var(--rv-shadow);
}
.rv-content-premium > .ftco-section:nth-of-type(2) .col-md-12 > div[align="center"] > p:first-child {
  grid-column: 1 / -1;
  max-width: 880px;
  margin: 0 0 28px;
  padding: 25px 28px;
  color: var(--rv-ink);
  background: var(--rv-green-soft);
  border-left: 4px solid var(--rv-green);
  border-radius: 0 var(--rv-radius-sm) var(--rv-radius-sm) 0;
  font-size: 1.08rem;
}
.rv-content-premium > .ftco-section:nth-of-type(2) .col-md-12 > div[align="center"] > h2,
.rv-content-premium > .ftco-section:nth-of-type(2) .col-md-12 > div[align="center"] > h3 {
  grid-column: 1;
  margin: 0;
  padding-top: 4px;
  text-align: left !important;
}
.rv-content-premium > .ftco-section:nth-of-type(2) .col-md-12 > div[align="center"] > h2 { font-size: clamp(1.65rem, 2.8vw, 2.35rem); }
.rv-content-premium > .ftco-section:nth-of-type(2) .col-md-12 > div[align="center"] > h3 { font-size: 1.35rem; }
.rv-content-premium > .ftco-section:nth-of-type(2) .col-md-12 > div[align="center"] > p:not(:first-child),
.rv-content-premium > .ftco-section:nth-of-type(2) .col-md-12 > div[align="center"] > ul,
.rv-content-premium > .ftco-section:nth-of-type(2) .col-md-12 > div[align="center"] > ol {
  grid-column: 2;
  max-width: none;
  margin: 0 0 12px;
  color: var(--rv-ink-soft);
  text-align: left !important;
}
.rv-content-premium > .ftco-section:nth-of-type(2) ul,
.rv-content-premium > .ftco-section:nth-of-type(2) ol {
  padding: 22px 24px 22px 44px;
  background: var(--rv-ivory);
  border: 1px solid var(--rv-line);
  border-radius: var(--rv-radius-sm);
}
.rv-content-premium > .ftco-section:nth-of-type(2) li { margin-bottom: 10px; text-align: left; }
.rv-content-premium > .ftco-section:nth-of-type(2) a { color: var(--rv-green-dark); font-weight: 750; text-decoration-color: rgba(19,117,70,0.35); text-underline-offset: 3px; }

.rv-historical-content > .row:first-child,
.rv-historical-content > br + .row { width: min(100% - 48px, var(--rv-container)); margin: 28px auto 0; }

.rv-historical-content > .ftco-section:first-of-type {
  padding-top: 72px;
  padding-bottom: 76px;
  background: var(--rv-white);
}

.rv-historical-content > .ftco-section:first-of-type h2 { font-size: clamp(2rem, 3.6vw, 3.3rem); }
#caruser, #caruser2 { width: 100%; min-width: 0; overflow: hidden; }
#caruser:empty { min-height: 130px; margin-top: 24px; background: linear-gradient(90deg, #eff2ed, #fafbf8, #eff2ed); background-size: 200% 100%; border-radius: var(--rv-radius); animation: rv-shimmer 1.4s infinite linear; }
#caruser2:empty { min-height: 1px; }

.services-section.img {
  padding: 92px 0 !important;
  overflow: hidden;
  color: var(--rv-white);
  background-image: linear-gradient(115deg, rgba(5, 43, 24, 0.93), rgba(12, 66, 38, 0.78)), url("../images/bg_2.jpg") !important;
  background-position: center !important;
  background-size: cover !important;
}

.services-section.img .overlay { position: absolute; inset: 0; background: radial-gradient(circle at 90% 10%, rgba(242,190,50,0.24), transparent 30%); }
.services-section.img h2,
.services-section.img h3 { color: var(--rv-white); }
.services-section.img .subheading { color: var(--rv-yellow-soft); }
.services-section.img .row { row-gap: 22px; }
.services-section.img .services {
  width: 100%;
  padding: 27px 22px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.17);
  border-radius: var(--rv-radius);
  backdrop-filter: blur(10px);
}
.services-section.img .services p { margin: 0; color: rgba(255,255,255,0.82); font-size: 0.92rem; }
.services-section.img .icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  align-items: center;
  justify-content: center;
  color: var(--rv-green-dark);
  background: var(--rv-yellow);
  border-radius: 50%;
}
.services-section.img .icon::before { font-family: Georgia, serif; font-weight: 700; content: "✓"; }
.services-section.img .icon span { display: none; }

.rv-historical-content .img-2 {
  min-height: 520px;
  background-image: url("../images/blog/couple-vegan-non-vegan.webp") !important;
  background-position: center;
  background-size: cover;
  border-radius: var(--rv-radius-lg) 0 0 var(--rv-radius-lg);
}

.rv-historical-content .wrap-about {
  display: flex;
  align-items: center;
  padding: clamp(36px, 6vw, 76px) !important;
  background: var(--rv-white);
  border: 1px solid var(--rv-line);
  border-left: 0;
  border-radius: 0 var(--rv-radius-lg) var(--rv-radius-lg) 0;
}

.rv-historical-content .wrap-about .heading-section { width: 100%; margin: 0; text-align: left !important; }
.rv-historical-content .wrap-about h2,
.rv-historical-content .wrap-about p { margin-left: 0; text-align: left !important; }

/* Blocs éditoriaux transversaux */
.rv-enrichment { padding: 108px 0; background: var(--rv-ivory); }
.rv-section-intro { display: grid; grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr); gap: 12px 72px; }
.rv-section-intro .rv-kicker { grid-column: 1 / -1; }
.rv-section-intro h2 { grid-row: 2 / 4; margin: 0; }
.rv-section-intro p { max-width: 650px; margin: 0 0 14px; color: var(--rv-ink-soft); }
.rv-advice-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; margin-top: 58px; }
.rv-advice-card { min-height: 205px; padding: 28px; background: var(--rv-white); border: 1px solid var(--rv-line); border-radius: var(--rv-radius); }
.rv-advice-card > span { display: block; margin-bottom: 38px; color: var(--rv-green); font-family: Georgia, serif; font-size: 1.5rem; }
.rv-advice-card p { margin: 0; font-weight: 650; line-height: 1.5; }
.rv-mini-faq { display: grid; grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr); gap: 40px; align-items: center; margin-top: 20px; padding: 38px 42px; background: var(--rv-green-deep); border-radius: var(--rv-radius); }
.rv-mini-faq h3 { margin: 0; color: var(--rv-white); }
.rv-mini-faq p { margin: 0; color: rgba(255,255,255,0.78); }
.rv-mini-faq .rv-kicker { color: var(--rv-yellow-soft); }
.rv-inline-cta { margin: 34px 0 0; text-align: center; }

/* Blog, cartes et magazine */
.rv-home-blog { padding: 108px 0; background: var(--rv-white); }
.rv-section-heading { display: flex; align-items: end; justify-content: space-between; gap: 36px; margin-bottom: 42px; }
.rv-section-heading h2 { max-width: 760px; margin: 0; }
.rv-article-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
.rv-article-grid--teaser { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.rv-article-card { min-width: 0; overflow: hidden; background: var(--rv-white); border: 1px solid var(--rv-line); border-radius: var(--rv-radius); transition: transform var(--rv-transition), box-shadow var(--rv-transition); }
.rv-article-card:hover { transform: translateY(-5px); box-shadow: var(--rv-shadow-sm); }
.rv-article-image { display: block; overflow: hidden; aspect-ratio: 16 / 9; background: var(--rv-green-soft); }
.rv-article-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease; }
.rv-article-card:hover .rv-article-image img { transform: scale(1.03); }
.rv-article-card-body { padding: 27px; }
.rv-article-category { margin-bottom: 13px; }
.rv-article-card h2,
.rv-article-card h3 { margin-bottom: 12px; font-size: clamp(1.35rem, 2vw, 1.8rem); }
.rv-article-card h2 a,
.rv-article-card h3 a { color: var(--rv-ink); text-decoration: none; }
.rv-article-card p { color: var(--rv-ink-soft); font-size: 0.91rem; line-height: 1.62; }
.rv-article-meta { display: flex; flex-wrap: wrap; gap: 8px 16px; color: var(--rv-ink-soft); font-size: 0.75rem; font-weight: 700; }
.rv-article-meta span + span::before,
.rv-article-meta time + span::before { margin-right: 16px; color: var(--rv-yellow); content: "•"; }

/* CTA conversation */
.rv-chat-cta { position: relative; padding: 108px 0; overflow: hidden; color: var(--rv-white); background: var(--rv-green-deep); }
.rv-chat-cta::before { position: absolute; top: -210px; left: -120px; width: 510px; height: 510px; border: 1px solid rgba(255,255,255,0.11); border-radius: 50%; content: ""; }
.rv-chat-layout { position: relative; display: grid; grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.72fr); align-items: start; justify-content: space-between; gap: clamp(40px, 8vw, 120px); }
.rv-chat-copy { min-width: 0; padding-top: 30px; }
.rv-chat-copy h2 { max-width: 690px; color: var(--rv-white); }
.rv-chat-copy p { max-width: 640px; margin-bottom: 30px; color: rgba(255,255,255,0.76); }
.rv-chat-copy .rv-kicker { color: var(--rv-yellow-soft); }
.rv-chat-card { min-width: 0; padding: 24px; color: var(--rv-ink); background: var(--rv-white); border-radius: 28px; box-shadow: 0 34px 70px rgba(0,0,0,0.24); }
.rv-chat-person { display: flex; align-items: center; gap: 12px; margin-bottom: 25px; padding-bottom: 18px; border-bottom: 1px solid var(--rv-line); }
.rv-chat-person > div { display: flex; min-width: 0; flex: 1; flex-direction: column; line-height: 1.25; }
.rv-chat-person small { color: var(--rv-ink-soft); font-size: 0.72rem; }
.rv-chat-person i { width: 9px; height: 9px; background: #23a55a; border-radius: 50%; box-shadow: 0 0 0 5px rgba(35,165,90,0.12); }
.rv-avatar { display: grid; width: 44px; height: 44px; flex: 0 0 auto; place-items: center; color: var(--rv-white); background: var(--rv-green); border-radius: 50%; font-family: Georgia, serif; font-size: 1.25rem; }
.rv-bubble { width: fit-content; max-width: 84%; margin: 10px 0; padding: 11px 14px; border-radius: 15px; font-size: 0.82rem; line-height: 1.45; }
.rv-bubble--them { background: #f0f2ee; border-bottom-left-radius: 4px; }
.rv-bubble--me { margin-left: auto; color: var(--rv-white); background: var(--rv-green); border-bottom-right-radius: 4px; }
.rv-chat-compose { display: flex; min-height: 48px; align-items: center; justify-content: space-between; gap: 14px; margin-top: 24px; padding: 9px 9px 9px 16px; color: #88918c; background: #f4f5f2; border-radius: 999px; font-size: 0.78rem; }
.rv-chat-compose b { display: grid; width: 32px; height: 32px; place-items: center; color: var(--rv-white); background: var(--rv-green); border-radius: 50%; }
.rv-chat-note { display: block; margin-top: 12px; color: #7d8781; font-size: 0.64rem; text-align: center; }

/* Répertoire et pied de page */
.rv-directory { padding: 66px 0; background: var(--rv-ivory); border-top: 1px solid var(--rv-line); }
.rv-directory .container > div { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin: 0 0 10px; }
.rv-directory .container > br { display: none; }
.cats {
  display: inline-flex !important;
  min-height: 38px;
  align-items: center;
  margin: 0 !important;
  padding: 8px 13px !important;
  color: var(--rv-ink) !important;
  background: rgba(255,255,255,0.76) !important;
  border: 1px solid var(--rv-line) !important;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 750 !important;
  line-height: 1.2 !important;
  text-decoration: none;
}
.cats:hover { color: var(--rv-green-dark) !important; background: var(--rv-yellow-soft) !important; border-color: rgba(242,190,50,0.6) !important; }
.rv-directory-editorial { margin-top: 20px !important; padding-top: 20px; border-top: 1px solid var(--rv-line); }

.ftco-footer {
  position: relative;
  overflow: hidden;
  padding: 78px 0 30px;
  color: rgba(255,255,255,0.68);
  background:
    radial-gradient(circle at 12% 0%, rgba(244,197,66,0.12), transparent 27%),
    radial-gradient(circle at 92% 20%, rgba(49,139,81,0.17), transparent 30%),
    #0d1510;
  border-top: 4px solid var(--rv-yellow);
  font-size: 0.88rem;
  line-height: 1.65;
}
.ftco-footer::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1180px, calc(100% - 48px));
  height: 1px;
  background: rgba(255,255,255,0.1);
  content: "";
  transform: translateX(-50%);
}
.rv-footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.45fr) repeat(3, minmax(145px, 0.75fr));
  gap: clamp(32px, 5vw, 76px);
  align-items: start;
}
.rv-footer-brand { max-width: 350px; }
.rv-footer-logo { display: inline-flex; align-items: center; margin-bottom: 26px; }
.ftco-footer .rv-footer-logo img {
  display: block;
  width: 249px !important;
  max-width: 100%;
  height: auto;
  margin: 0;
  filter: none;
}
.rv-footer-kicker {
  display: block;
  margin-bottom: 9px;
  color: var(--rv-yellow);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.ftco-footer .rv-footer-brand p { max-width: 330px; margin: 0 0 24px; color: rgba(255,255,255,0.72); }
.ftco-footer .rv-footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-height: 44px;
  padding: 10px 18px;
  color: #101713;
  background: var(--rv-yellow);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease;
}
.ftco-footer .rv-footer-cta:hover { color: #101713; background: #ffe278; transform: translateY(-2px); }
.rv-footer-nav { display: grid; gap: 10px; align-content: start; }
.rv-footer-nav strong {
  margin-bottom: 10px;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.ftco-footer .rv-footer-nav a { color: rgba(255,255,255,0.7); text-decoration: none; transition: color 180ms ease, transform 180ms ease; }
.ftco-footer .rv-footer-nav a:hover { color: var(--rv-yellow); transform: translateX(2px); }
.rv-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 64px;
  padding-top: 25px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.72rem;
}
.ftco-footer .rv-footer-bottom p { margin: 0; }
.rv-footer-bottom > div { display: flex; flex-wrap: wrap; gap: 10px 22px; }
.ftco-footer .rv-footer-bottom a { color: rgba(255,255,255,0.7); text-decoration: none; }
.ftco-footer .rv-footer-bottom a:hover { color: #fff; }

@media (max-width: 900px) {
  .rv-footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .rv-footer-brand { grid-column: 1 / -1; max-width: 520px; }
}
@media (max-width: 600px) {
  .ftco-footer { padding-top: 60px; }
  .rv-footer-grid { grid-template-columns: 1fr 1fr; gap: 38px 28px; }
  .rv-footer-brand { grid-column: 1 / -1; }
  .rv-footer-nav:last-child { grid-column: 1 / -1; grid-template-columns: 1fr 1fr; }
  .rv-footer-nav:last-child strong { grid-column: 1 / -1; }
  .rv-footer-bottom { align-items: flex-start; flex-direction: column; margin-top: 48px; }
}

/* Blog */
.rv-blog-header { background: var(--rv-ivory); }
.rv-blog-hero { max-width: 920px; padding-top: 100px; padding-bottom: 104px; text-align: center; }
.rv-blog-hero .rv-kicker { justify-content: center; }
.rv-blog-hero h1 { font-size: clamp(2.8rem, 5.2vw, 5rem); }
.rv-blog-hero p { max-width: 690px; margin: 22px auto 0; color: var(--rv-ink-soft); font-size: 1.12rem; }
.rv-blog-main > .container { padding-top: 88px; padding-bottom: 104px; }
.rv-blog .rv-article-card--featured { grid-column: 1 / -1; display: grid; grid-template-columns: 1.05fr 0.95fr; }
.rv-blog .rv-article-card--featured .rv-article-image { height: 100%; aspect-ratio: auto; }
.rv-blog .rv-article-card--featured .rv-article-card-body { display: flex; flex-direction: column; justify-content: center; padding: clamp(32px, 5vw, 64px); }
.rv-blog .rv-article-card--featured h2 { font-size: clamp(1.8rem, 3vw, 3rem); }
.rv-blog-signup { padding: 88px 0; background: var(--rv-green-soft); }
.rv-blog-signup-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr); align-items: start; gap: clamp(36px, 8vw, 100px); }
.rv-blog-signup-grid > div:first-child { padding-top: 35px; }
.rv-blog-signup-grid > div:first-child p { max-width: 600px; color: var(--rv-ink-soft); }

.rv-blog-article-nav { background: var(--rv-paper); }
.rv-article-header { padding: 92px 0 64px; background: var(--rv-ivory); }
.rv-article-header-inner { max-width: 900px; text-align: center; }
.rv-back-blog { display: inline-block; margin-bottom: 34px; font-size: 0.84rem; font-weight: 800; text-decoration: none; }
.rv-article-header h1 { font-size: clamp(2.7rem, 5.1vw, 4.9rem); }
.rv-article-header > .container > p { max-width: 720px; margin: 20px auto; color: var(--rv-ink-soft); font-size: 1.1rem; }
.rv-article-header .rv-article-meta { justify-content: center; }
.rv-article-hero { margin-top: 54px; margin-bottom: 68px; overflow: hidden; border-radius: var(--rv-radius-lg); box-shadow: var(--rv-shadow-sm); }
.rv-article-hero img { width: 100%; aspect-ratio: 16 / 8.5; object-fit: cover; }
.rv-article-shell { display: grid; grid-template-columns: minmax(0, 1fr) 290px; align-items: start; gap: 70px; padding-bottom: 104px; }
.rv-article-content { min-width: 0; color: #354139; }
.rv-article-content > * { max-width: 740px; }
.rv-article-content h2 { margin-top: 1.7em; font-size: clamp(1.85rem, 3vw, 2.65rem); }
.rv-article-content h3 { margin-top: 1.55em; }
.rv-article-content p, .rv-article-content li { line-height: 1.82; }
.rv-article-content a { font-weight: 750; }
.rv-article-content blockquote { margin: 36px 0; padding: 25px 28px; background: var(--rv-green-soft); border-left: 4px solid var(--rv-green); border-radius: 0 var(--rv-radius-sm) var(--rv-radius-sm) 0; }
.rv-article-aside { position: sticky; top: 28px; }
.rv-article-aside > div { padding: 28px; background: var(--rv-ivory); border: 1px solid var(--rv-line); border-radius: var(--rv-radius); }
.rv-article-aside h2 { font-size: 1.65rem; }
.rv-article-aside p { color: var(--rv-ink-soft); font-size: 0.86rem; }
.rv-related { padding: 92px 0; background: var(--rv-ivory); }
.rv-related h2 { margin-bottom: 35px; }
.rv-related-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.rv-related-grid article { overflow: hidden; background: var(--rv-white); border: 1px solid var(--rv-line); border-radius: var(--rv-radius); }
.rv-related-grid a { display: block; color: var(--rv-ink); text-decoration: none; }
.rv-related-grid img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.rv-related-grid strong { display: block; padding: 22px; font-family: Georgia, serif; font-size: 1.2rem; line-height: 1.35; }

/* Pages utilitaires et contenus particuliers */
.rv-error-page { min-height: 58vh; padding: 110px 0; text-align: center; background: var(--rv-ivory); }
.rv-error-page p { max-width: 620px; margin-right: auto; margin-left: auto; color: var(--rv-ink-soft); }
.frametchat { display: block; width: 100% !important; max-width: 100%; border: 0; border-radius: var(--rv-radius); }
.rv-historical-content form { max-width: 680px; margin-inline: auto; }
.rv-historical-content input,
.rv-historical-content textarea,
.rv-historical-content select { width: 100%; min-height: 48px; padding: 11px 14px; border: 1px solid var(--rv-line-dark); border-radius: 10px; background: var(--rv-white); }
.rv-historical-content textarea { min-height: 160px; resize: vertical; }

/* Contact */
.rv-route-contact .rv-content-premium > .row:first-of-type { position: relative; z-index: 2; }
.rv-route-contact .rv-content-premium .contact-section {
  padding: 88px 0 108px;
  background:
    radial-gradient(circle at 9% 8%, rgba(242,190,50,0.2), transparent 24%),
    var(--rv-ivory);
}
.rv-route-contact .contact-section .block-9 { max-width: 1040px; margin: 0 auto !important; }
.rv-route-contact .contact-section .col-md-8 { width: 100%; max-width: 820px; margin: 0 auto; }
.rv-route-contact .contact-section h2 { max-width: 700px; margin-bottom: 34px; font-size: clamp(2.15rem, 4vw, 3.55rem); }
.rv-route-contact .contact-form {
  padding: clamp(28px, 5vw, 54px) !important;
  background: var(--rv-white) !important;
  border: 1px solid var(--rv-line);
  border-radius: var(--rv-radius-lg);
  box-shadow: var(--rv-shadow-lg);
}
.rv-route-contact .contact-form .form-group { margin-bottom: 16px; }
.rv-route-contact .contact-form input,
.rv-route-contact .contact-form textarea { border-color: var(--rv-line); border-radius: 14px; }
.rv-route-contact .contact-form input[type="submit"] {
  min-height: 54px;
  color: var(--rv-green-dark);
  background: var(--rv-yellow);
  border: 0;
  border-radius: 999px;
  font-weight: 850;
  cursor: pointer;
}

/* Mentions légales */
.rv-route-mentions-legales .rv-content-premium > .services-section:first-of-type {
  padding: 84px 0 108px;
  background: var(--rv-ivory);
}
.rv-route-mentions-legales .rv-content-premium > .services-section:first-of-type .col-md-12 {
  max-width: 960px;
  margin: 0 auto;
  padding: clamp(34px, 6vw, 70px);
  color: var(--rv-ink-soft);
  background: var(--rv-white);
  border: 1px solid var(--rv-line);
  border-radius: var(--rv-radius-lg);
  box-shadow: var(--rv-shadow);
  line-height: 1.82;
}
.rv-route-mentions-legales .rv-content-premium > .services-section:first-of-type h2 {
  margin-top: 1.6em;
  margin-bottom: 0.7em;
  color: var(--rv-ink);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
}
.rv-route-mentions-legales .rv-content-premium > .services-section:first-of-type h2:first-of-type { margin-top: 0; }
.rv-route-mentions-legales .rv-content-premium > .services-section:first-of-type h3 { margin-top: 1.4em; color: var(--rv-green-dark); }

/* Tchat et webcam : intégrations partenaires conservées, cadre premium local */
.rv-route-tchat .rv-content-premium > .services-section:first-of-type,
.rv-route-webcam .rv-content-premium > .services-section:first-of-type {
  padding: 86px 0 96px;
  color: var(--rv-white);
  background:
    radial-gradient(circle at 92% 8%, rgba(242,190,50,0.23), transparent 25%),
    var(--rv-green-dark);
}
.rv-route-tchat .rv-content-premium > .services-section:first-of-type h2,
.rv-route-webcam .rv-content-premium > .services-section:first-of-type h2 { max-width: 800px; color: var(--rv-white); font-size: clamp(2rem, 4vw, 3.4rem); }
.rv-route-tchat .rv-content-premium > .services-section:first-of-type p { max-width: 760px; margin-inline: auto; color: rgba(255,255,255,0.82); }
.rv-route-tchat #coomeet_container,
.rv-route-webcam .block-bordered,
.rv-route-webcam .cp-webcam-gallery-container {
  overflow: hidden;
  background: var(--rv-white);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--rv-radius);
  box-shadow: var(--rv-shadow-lg);
}
.rv-route-webcam iframe { display: block; width: 100% !important; border: 0; }
.rv-route-tchat .rv-content-premium > div[align="center"] { padding: 24px; background: var(--rv-paper); }
.rv-route-tchat .rv-content-premium > div[align="center"] > a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  padding: 11px 22px;
  color: var(--rv-white);
  background: var(--rv-green);
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
}
.rv-route-tchat .testimony-section { padding: 96px 0; background: var(--rv-ivory); }
.rv-route-tchat .testimony-section .container { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.rv-route-tchat .testimony-section .row { grid-column: 1 / -1; }
.rv-route-tchat .testimony-section .col-md-4 { width: 100%; padding: 18px; background: var(--rv-white); border: 1px solid var(--rv-line); border-radius: var(--rv-radius); }
.rv-route-tchat .testimony-section img { width: 100%; height: auto; border-radius: var(--rv-radius-sm); }

/* Anciens gabarits éditoriaux conservés, intégrés au même thème */
.rv-legacy-editorial { background: var(--rv-paper); }
.rv-legacy-editorial .hero-wrap { height: auto !important; padding-bottom: 66px; background: var(--rv-ivory) !important; }
.rv-legacy-editorial .hero-wrap > .container { width: min(100% - 48px, var(--rv-container)); }
.rv-legacy-editorial #ftco-navbar { margin-bottom: 34px; padding: 13px 0; color: var(--rv-ink) !important; background: transparent !important; }
.rv-legacy-editorial #ftco-navbar > .container { display: flex; width: 100%; min-height: 58px; align-items: center; justify-content: space-between; gap: 28px; }
.rv-legacy-editorial #ftco-navbar img { width: 190px; }
.rv-legacy-editorial #ftco-navbar .navbar-toggler { display: none !important; }
.rv-legacy-editorial #ftco-navbar .navbar-collapse { margin-left: auto; }
.rv-legacy-editorial #ftco-navbar .navbar-nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 18px; margin: 0 0 0 auto; padding: 0; list-style: none; }
.rv-legacy-editorial #ftco-navbar .nav-link { color: var(--rv-ink) !important; font-size: 0.8rem; font-weight: 750; text-decoration: none; }
.rv-legacy-editorial .hero-wrap > .container > hr { display: none; }
.rv-legacy-editorial .hero-wrap .row.align-items-center { display: grid; grid-template-columns: minmax(0, 1fr) minmax(340px, 0.78fr); align-items: start; gap: 28px; margin: 0; }
.rv-legacy-editorial .hero-wrap .col-lg-6 { width: auto; padding: 0; }
.rv-legacy-editorial .form-head { display: flex; min-height: 592px; align-items: flex-end; padding: 52px; color: var(--rv-white); background: linear-gradient(180deg, rgba(5,34,19,0.08), rgba(5,34,19,0.9)), url("../images/blog/premier-rendez-vous-vegan.webp") center / cover; border-radius: var(--rv-radius-lg); box-shadow: var(--rv-shadow-lg); }
.rv-legacy-editorial .form-head > div { text-align: left; }
.rv-legacy-editorial .form-head h1 { color: var(--rv-white); }
.rv-legacy-editorial .form-head h1 p { margin: 0 0 10px; color: var(--rv-white); font-family: inherit; }
.rv-legacy-editorial .form-head .y-j-h-6 { color: var(--rv-yellow) !important; font-size: 0.8rem !important; font-weight: 800; letter-spacing: 0.13em; text-transform: uppercase; }
.rv-legacy-editorial .form-head .h1homemid { font-family: Georgia, serif; font-size: clamp(2.7rem, 5vw, 4.8rem); line-height: 1.05; letter-spacing: -0.04em; }
.rv-legacy-editorial .form-head .preshead { color: rgba(255,255,255,0.82) !important; }
.rv-legacy-editorial .form-head img { display: none; }
.rv-legacy-editorial .form-head2 { min-height: 540px; padding: 34px; background: var(--rv-white); border: 1px solid var(--rv-line); border-radius: var(--rv-radius-lg); box-shadow: var(--rv-shadow-lg); }
.rv-legacy-editorial > #caruser { width: min(100% - 48px, var(--rv-container)); margin: 56px auto; }
.rv-legacy-editorial > hr { display: none; }
.rv-legacy-editorial > .row,
.rv-legacy-editorial > section { width: min(100% - 48px, var(--rv-container)); margin-right: auto; margin-left: auto; }
.rv-legacy-editorial > section { padding: 68px 0 92px; }
.rv-legacy-editorial > section p { max-width: 820px; margin-right: auto; margin-left: auto; color: var(--rv-ink-soft); text-align: left !important; }
.rv-legacy-editorial > section h2,
.rv-legacy-editorial > section h3 { max-width: 820px; margin-right: auto; margin-left: auto; text-align: left !important; }
.rv-legacy-editorial > div[align="center"] { width: min(100% - 48px, var(--rv-container)); margin: 0 auto 12px; }
.rv-legacy-editorial > .ftco-footer { width: 100%; margin-top: 70px; }

/* Pages À propos et revue de presse */
.rv-editorial-premium .hero-wrap { overflow: hidden; background: linear-gradient(180deg, var(--rv-ivory), var(--rv-paper)) !important; }
.rv-editorial-premium > section {
  width: 100%;
  padding: 100px 0;
  background:
    radial-gradient(circle at 95% 5%, rgba(23,101,58,0.1), transparent 24%),
    var(--rv-ivory);
}
.rv-editorial-premium > section > .container { width: min(100% - 48px, 1080px); }
.rv-editorial-premium > section .row { margin: 0; }
.rv-editorial-premium > section .col-md-12 {
  width: 100%;
  padding: clamp(36px, 6vw, 72px);
  background: var(--rv-white);
  border: 1px solid var(--rv-line);
  border-radius: var(--rv-radius-lg);
  box-shadow: var(--rv-shadow);
}
.rv-editorial-premium > section .col-md-12 > p:first-of-type {
  margin-bottom: 40px;
  padding: 25px 28px;
  color: var(--rv-ink);
  background: var(--rv-green-soft);
  border-left: 4px solid var(--rv-green);
  border-radius: 0 var(--rv-radius-sm) var(--rv-radius-sm) 0;
  font-size: 1.08rem;
}
.rv-editorial-premium > section h2 { margin-top: 1.75em; font-size: clamp(2rem, 3.7vw, 3.15rem); }
.rv-editorial-premium > section h3 {
  margin-top: 1.65em;
  padding: 20px 24px;
  color: var(--rv-green-dark);
  background: var(--rv-ivory);
  border: 1px solid var(--rv-line);
  border-radius: var(--rv-radius-sm);
  font-size: clamp(1.3rem, 2.3vw, 1.75rem);
}
.rv-editorial-premium > section p { line-height: 1.82; }
.rv-editorial-premium > section a { color: var(--rv-green-dark); font-weight: 750; text-decoration-color: rgba(19,117,70,0.35); text-underline-offset: 3px; }
.rv-editorial-premium > section hr { width: 100%; margin: 42px 0; border: 0; border-top: 1px solid var(--rv-line); }
.rv-editorial-premium > section + br,
.rv-editorial-premium > section + br + hr,
.rv-editorial-premium > section + br + hr + br { display: none; }
.rv-editorial-premium > div[align="center"] { display: flex; justify-content: center; flex-wrap: wrap; gap: 9px; }
.rv-editorial-premium .cats {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 8px 15px;
  color: var(--rv-green-dark);
  background: var(--rv-white);
  border: 1px solid var(--rv-line);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  text-decoration: none;
  transition: background var(--rv-transition), border-color var(--rv-transition), transform var(--rv-transition);
}
.rv-editorial-premium .cats:hover { background: var(--rv-yellow-soft); border-color: var(--rv-yellow); transform: translateY(-2px); }

/* Pages SEO */
.rv-page-breadcrumb { padding-top: 26px; }
.rv-page-breadcrumb .breadcrumb { margin-bottom: 0; }
.rv-seo-profiles { padding-top: 62px; padding-bottom: 88px; }
.rv-seo-profiles #caruser { margin-top: 34px; }
.rv-seo-profiles #caruser2:empty { display: none; }
.rv-seo-section { padding: 100px 0; background: var(--rv-paper); }
.rv-seo-section--soft { background: var(--rv-ivory); }
.rv-seo-intro { max-width: 820px; margin: 0 auto 44px; }
.rv-seo-intro--center { text-align: center; }
.rv-seo-intro--center p { margin-right: auto; margin-left: auto; text-align: center !important; }
.rv-seo-intro p,
.rv-prose p { color: var(--rv-ink-soft); }
.rv-seo-intro p:last-child,
.rv-prose p:last-child { margin-bottom: 0; }
.rv-seo-split { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(290px, 0.68fr); align-items: start; gap: clamp(40px, 7vw, 82px); }
.rv-prose { max-width: 820px; }
.rv-value-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.rv-value-card { min-height: 100%; padding: 31px 28px; background: var(--rv-white); border: 1px solid var(--rv-line); border-radius: var(--rv-radius); box-shadow: 0 12px 38px rgba(17,42,28,0.055); }
.rv-value-card > span { display: inline-flex; width: 42px; height: 42px; align-items: center; justify-content: center; margin-bottom: 25px; color: var(--rv-green-dark); background: var(--rv-yellow); border-radius: 50%; font-size: 0.74rem; font-weight: 850; letter-spacing: 0.04em; }
.rv-value-card h3 { margin-bottom: 12px; font-size: 1.45rem; }
.rv-value-card p { margin: 0; color: var(--rv-ink-soft); font-size: 0.95rem; }
.rv-quote-panel { position: relative; overflow: hidden; padding: 38px 34px; color: var(--rv-white); background: var(--rv-green-dark); border-radius: var(--rv-radius); box-shadow: var(--rv-shadow); }
.rv-quote-panel::after { position: absolute; right: -35px; bottom: -58px; width: 145px; height: 145px; background: var(--rv-yellow); border-radius: 50%; content: ""; opacity: 0.12; }
.rv-quote-panel > span,
.rv-content-cta > span { display: block; margin-bottom: 18px; color: var(--rv-yellow); font-size: 0.72rem; font-weight: 850; letter-spacing: 0.13em; text-transform: uppercase; }
.rv-quote-panel p { position: relative; z-index: 1; margin: 0; color: var(--rv-white); font-family: Georgia, serif; font-size: clamp(1.35rem, 2.1vw, 1.9rem); line-height: 1.35; }
.rv-content-cta { padding: 38px 34px; background: var(--rv-white); border: 1px solid var(--rv-line); border-radius: var(--rv-radius); box-shadow: var(--rv-shadow); }
.rv-content-cta > span { color: var(--rv-green); }
.rv-content-cta h2 { margin-bottom: 16px; font-size: clamp(1.9rem, 3vw, 2.7rem); }
.rv-content-cta p { margin-bottom: 25px; color: var(--rv-ink-soft); }
.rv-content-cta .rv-button { width: 100%; }
.rv-topic-links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; max-width: 940px; margin: 0 auto; }
.rv-topic-links a { position: relative; display: flex; min-height: 116px; flex-direction: column; justify-content: center; padding: 25px 62px 25px 28px; color: var(--rv-ink); background: var(--rv-white); border: 1px solid var(--rv-line); border-radius: 18px; text-decoration: none; transition: border-color var(--rv-transition), transform var(--rv-transition), box-shadow var(--rv-transition); }
.rv-topic-links a::after { position: absolute; top: 50%; right: 25px; color: var(--rv-green); content: "→"; font-size: 1.35rem; transform: translateY(-50%); }
.rv-topic-links a:hover { border-color: rgba(19,117,70,0.35); box-shadow: 0 14px 38px rgba(17,42,28,0.09); transform: translateY(-3px); }
.rv-topic-links span { margin-bottom: 5px; font-family: Georgia, serif; font-size: 1.25rem; font-weight: 700; }
.rv-topic-links small { color: var(--rv-ink-soft); font-size: 0.82rem; }

@media (max-width: 1080px) {
  .rv-nav-list { gap: 17px; }
  .rv-nav-list a:not(.rv-nav-cta) { font-size: 0.78rem; }
  .rv-hero-copy { min-height: 600px; padding: 42px; }
  .rv-hero-copy h1 { font-size: clamp(2.85rem, 5.3vw, 4.5rem); }
}

@media (max-width: 900px) {
  .rv-nav-toggle { display: flex; }
  .rv-nav-panel {
    position: fixed;
    top: 84px;
    right: 0;
    left: 0;
    max-height: calc(100vh - 84px);
    overflow-y: auto;
    padding: 22px 24px 28px;
    background: var(--rv-paper);
    border-top: 1px solid var(--rv-line);
    box-shadow: 0 22px 48px rgba(17,42,28,0.13);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity var(--rv-transition), transform var(--rv-transition);
  }
  .rv-nav-panel.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .rv-nav-list { align-items: stretch; flex-direction: column; gap: 0; }
  .rv-nav-list li { border-bottom: 1px solid var(--rv-line); }
  .rv-nav-list li:last-child { padding-top: 16px; border: 0; }
  .rv-nav-list a:not(.rv-nav-cta) { display: block; padding: 13px 2px; font-size: 0.95rem; }
  .rv-nav-list a::after { display: none; }
  .rv-nav-cta { width: 100%; }

  .rv-hero { padding-top: 26px; }
  .rv-hero-grid,
  .rv-chat-layout,
  .rv-blog-signup-grid,
  .rv-legacy-editorial .hero-wrap .row.align-items-center { grid-template-columns: minmax(0, 1fr); }
  .rv-hero-copy { min-height: 560px; }
  .rv-form-panel { max-width: 660px; margin-inline: auto; }
  .rv-section-intro { grid-template-columns: minmax(0, 1fr); }
  .rv-section-intro h2 { grid-row: auto; }
  .rv-advice-grid { grid-template-columns: minmax(0, 1fr); }
  .rv-advice-card { min-height: 0; }
  .rv-advice-card > span { margin-bottom: 20px; }
  .rv-mini-faq { grid-template-columns: minmax(0, 1fr); gap: 16px; }
  .rv-article-grid--teaser { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .rv-article-grid--teaser .rv-article-card:first-child { grid-column: 1 / -1; }
  .rv-article-shell { grid-template-columns: minmax(0, 1fr); gap: 40px; }
  .rv-article-aside { position: static; }
  .rv-related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .rv-legacy-editorial .form-head2 { min-height: 0; }
  .rv-seo-split { grid-template-columns: minmax(0, 1fr); }
  .rv-quote-panel,
  .rv-content-cta { max-width: 680px; }
  .rv-content-premium > .ftco-section:nth-of-type(2) .col-md-12 > div[align="center"] { grid-template-columns: minmax(0, 1fr); gap: 18px; }
  .rv-content-premium > .ftco-section:nth-of-type(2) .col-md-12 > div[align="center"] > * { grid-column: 1 !important; }
  .rv-content-premium > .ftco-section:nth-of-type(2) .col-md-12 > div[align="center"] > h2,
  .rv-content-premium > .ftco-section:nth-of-type(2) .col-md-12 > div[align="center"] > h3 { margin-top: 28px; }
  .rv-route-tchat .testimony-section .container { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .container,
  .rv-legacy-editorial .hero-wrap > .container,
  .rv-legacy-editorial > .row,
  .rv-legacy-editorial > section,
  .rv-legacy-editorial > div[align="center"] { width: min(100% - 32px, var(--rv-container)); }
  .rv-navbar > .container { min-height: 74px; }
  .rv-brand img { width: 164px; }
  .rv-nav-panel { top: 74px; max-height: calc(100vh - 74px); }
  .rv-hero { padding-bottom: 46px; }
  .rv-hero-copy { min-height: 500px; padding: 30px 24px; border-radius: 25px; }
  .rv-hero-copy::before { width: 48px; height: 48px; }
  .rv-hero-copy h1 { font-size: clamp(2.55rem, 13vw, 4rem); }
  .rv-hero-copy > p { font-size: 1rem; }
  .rv-hero-actions { align-items: stretch; flex-direction: column; width: 100%; }
  .rv-hero-actions .rv-button { width: 100%; }
  .rv-trust-list { align-items: flex-start; flex-direction: column; }
  .rv-form-panel { padding: 25px 19px; border-radius: 24px; }
  .rv-form-panel #formuser { min-height: 320px; }

  .row { margin-inline: 0; }
  [class*="col-"] { width: 100%; padding-inline: 0; }
  .rv-historical-content .ftco-section,
  .rv-historical-content > section { padding: 68px 0; }
  .services-section.img { padding: 70px 0 !important; }
  .rv-historical-content .img-2 { min-height: 340px; border-radius: 24px 24px 0 0; }
  .rv-historical-content .wrap-about { padding: 34px 24px !important; border: 1px solid var(--rv-line); border-top: 0; border-radius: 0 0 24px 24px; }
  .rv-enrichment,
  .rv-home-blog,
  .rv-chat-cta { padding: 78px 0; }
  .rv-section-heading { align-items: flex-start; flex-direction: column; }
  .rv-mini-faq { padding: 29px 24px; }
  .rv-article-grid,
  .rv-article-grid--teaser,
  .rv-related-grid { grid-template-columns: minmax(0, 1fr); }
  .rv-article-grid--teaser .rv-article-card:first-child { grid-column: auto; }
  .rv-chat-copy { padding-top: 0; }
  .rv-chat-card { padding: 19px; border-radius: 23px; }
  .rv-directory { padding: 52px 0; }
  .ftco-footer { padding-top: 52px; }
  .rv-blog-hero { padding-top: 72px; padding-bottom: 78px; }
  .rv-blog-main > .container { padding-top: 64px; padding-bottom: 78px; }
  .rv-blog .rv-article-card--featured { display: block; }
  .rv-blog .rv-article-card--featured .rv-article-image { aspect-ratio: 16 / 9; }
  .rv-article-header { padding-top: 70px; }
  .rv-article-hero { width: calc(100% - 32px); margin-top: 34px; margin-bottom: 48px; border-radius: 22px; }
  .rv-article-shell { padding-bottom: 78px; }
  .rv-legacy-editorial #ftco-navbar .navbar-toggler { display: none; }
  .rv-legacy-editorial #ftco-navbar .navbar-nav { display: none; }
  .rv-legacy-editorial .form-head { min-height: 500px; padding: 28px 24px; border-radius: 25px; }
  .rv-legacy-editorial .form-head .h1homemid { font-size: clamp(2.5rem, 12vw, 4rem); }
  .rv-legacy-editorial .form-head2 { padding: 25px 19px; border-radius: 24px; }
  .rv-page-breadcrumb { padding-top: 18px; }
  .rv-seo-profiles { padding-top: 44px; padding-bottom: 68px; }
  .rv-seo-section { padding: 76px 0; }
  .rv-value-grid,
  .rv-topic-links { grid-template-columns: minmax(0, 1fr); }
  .rv-value-card,
  .rv-quote-panel,
  .rv-content-cta { padding: 28px 24px; }
  .rv-topic-links a { min-height: 104px; }
  .rv-content-premium > .row:first-of-type { width: min(100% - 32px, var(--rv-container)); padding-top: 18px; }
  .rv-content-premium > .services-section:first-of-type { padding: 56px 0 68px; }
  .rv-content-premium > .services-section:first-of-type > .container > div[align="center"] { padding: 28px 20px; border-radius: 24px; }
  .rv-content-premium > .ftco-section:nth-of-type(2) { padding: 72px 0; }
  .rv-content-premium > .ftco-section:nth-of-type(2) .container { width: min(100% - 32px, 1080px); }
  .rv-content-premium > .ftco-section:nth-of-type(2) .col-md-12 > div[align="center"] { padding: 30px 23px; border-radius: 24px; }
  .rv-content-premium > .ftco-section:nth-of-type(2) .col-md-12 > div[align="center"] > p:first-child { padding: 21px 20px; }
  .rv-route-contact .contact-section,
  .rv-route-mentions-legales .rv-content-premium > .services-section:first-of-type,
  .rv-route-tchat .rv-content-premium > .services-section:first-of-type,
  .rv-route-webcam .rv-content-premium > .services-section:first-of-type { padding: 66px 0 78px; }
  .rv-route-mentions-legales .rv-content-premium > .services-section:first-of-type .col-md-12 { padding: 30px 23px; border-radius: 24px; }
  .rv-route-tchat .testimony-section .container { grid-template-columns: minmax(0, 1fr); }
  .rv-editorial-premium > section { padding: 72px 0; }
  .rv-editorial-premium > section > .container { width: min(100% - 32px, 1080px); }
  .rv-editorial-premium > section .col-md-12 { padding: 30px 23px; border-radius: 24px; }
  .rv-editorial-premium > section .col-md-12 > p:first-of-type { padding: 21px 20px; }
}

@media (max-width: 390px) {
  .container,
  .rv-legacy-editorial .hero-wrap > .container,
  .rv-legacy-editorial > .row,
  .rv-legacy-editorial > section,
  .rv-legacy-editorial > div[align="center"] { width: min(100% - 24px, var(--rv-container)); }
  .rv-brand img { width: 148px; }
  .rv-hero-copy { min-height: 475px; padding: 26px 20px; }
  .rv-button, .btn, .rv-nav-cta { padding-inline: 17px; }
  .rv-chat-card { padding: 16px; }
  .rv-bubble { max-width: 92%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}
