/* =====================================================================
   RENAISSANCE STUDIO – Pop-up & Crowdfunding landing page
   Vanilla CSS for Avada/WordPress integration.
   NOTE: no font-family declared anywhere — typography is inherited
   from the Avada theme. Only sizes / weights / line-heights / colors.
   ===================================================================== */

/* ---------- Palette ---------- */
:root {
  --rs-terracotta:      #be7552;
  --rs-terracotta-dark: #a8623f;
  --rs-ink:             #2c313a;   /* headings */
  --rs-body:            #6b6661;   /* paragraph text */
  --rs-muted:           #8a8278;   /* small labels / eyebrows neutral */
  --rs-cream:           #f5f1ee;   /* hero / alt section bg */
  --rs-cream-2:         #f6f3ef;   /* impact / soutien band */
  --rs-white:           #fbfaf8;   /* near-white sections */
  --rs-blush:           #f1e9e3;   /* SIG callout box */
  --rs-sage:            #7b8069;   /* green CTA band */
  --rs-footer:          #f4f2ef;   /* footer bg */
  --rs-line:            #e6e0d8;   /* hairline dividers */
  --rs-card-shadow:     0 28px 60px rgba(44, 49, 58, .14);

  --rs-edge: clamp(20px, calc((100vw - 1180px) / 2), 340px);
  --rs-pad:  clamp(20px, 4vw, 64px);
}

/* ---------- Reset (scoped) ---------- */
.rs-page * { box-sizing: border-box; }
.rs-page {
  margin: 0;
  color: var(--rs-body);
  background: var(--rs-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
.rs-page img { max-width: 100%; display: block; }
.rs-page a { color: inherit; text-decoration: none; }
.rs-page p { margin: 0; }
.rs-page h1, .rs-page h2, .rs-page h3, .rs-page h4 { margin: 0; color: var(--rs-ink); }

/* shared helpers */
.rs-eyebrow {
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 13px;
  font-weight: 600;
  color: var(--rs-terracotta);
  margin: 0 0 18px;
}
.rs-eyebrow--ink   { color: var(--rs-ink); }
.rs-eyebrow--muted { color: var(--rs-muted); }

.rs-icon { display: inline-block; vertical-align: middle; flex: 0 0 auto; }

/* =====================================================================
   HEADER
   ===================================================================== */
.rs-header {
  background: var(--rs-white);
  border-bottom: 1px solid rgba(230, 224, 216, .6);
}
.rs-header__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px var(--rs-pad);
  display: flex;
  align-items: center;
  gap: 28px;
}
.rs-logo { display: flex; flex-direction: column; align-items: center; gap: 4px; color: var(--rs-ink); }
.rs-logo svg { color: var(--rs-terracotta); }
.rs-logo__name {
  font-size: 19px;
  letter-spacing: .14em;
  font-weight: 500;
  line-height: 1;
}
.rs-logo__sub {
  font-size: 10px;
  letter-spacing: .42em;
  color: var(--rs-muted);
  padding-left: .42em;
}
.rs-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(16px, 1.8vw, 30px);
}
.rs-nav a {
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #6a6560;
  font-weight: 500;
  transition: color .18s ease;
}
.rs-nav a:hover { color: var(--rs-terracotta); }

/* buttons */
.rs-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  padding: 15px 26px;
  border-radius: 4px;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.rs-btn--primary { background: var(--rs-terracotta); color: #fff; }
.rs-btn--primary:hover { background: var(--rs-terracotta-dark); transform: translateY(-1px); }
.rs-btn--ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .65);
}
.rs-btn--ghost:hover { background: rgba(255, 255, 255, .12); }
.rs-btn--lg { padding: 18px 32px; font-size: 14px; }
.rs-btn .rs-icon { margin-left: 2px; }
.rs-header .rs-btn { padding: 14px 22px; }

/* =====================================================================
   HERO
   ===================================================================== */
.rs-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--rs-cream);
}
.rs-hero__text {
  padding: clamp(40px, 6vw, 84px) var(--rs-pad) clamp(40px, 6vw, 84px) var(--rs-edge);
  align-self: center;
  max-width: 640px;
}
.rs-hero h1 {
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.12;
  font-weight: 500;
  letter-spacing: -.01em;
  margin-bottom: 24px;
}
.rs-hero__lead { font-size: 17px; color: #5d5852; margin-bottom: 26px; max-width: 520px; }
.rs-hero__meta { display: flex; flex-direction: column; gap: 12px; margin-bottom: 26px; }
.rs-meta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--rs-terracotta);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 14px;
  font-weight: 600;
}
.rs-hero__note { font-size: 15px; color: #6b665f; margin-bottom: 32px; max-width: 540px; }

.rs-hero__media {
  position: relative;
  min-height: 480px;
  background-size: cover;
  background-position: center;
}
.rs-hero__card {
  position: absolute;
  top: 50%;
  right: clamp(16px, 3vw, 40px);
  transform: translateY(-50%);
  width: min(330px, 70%);
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--rs-card-shadow);
  padding: 30px 28px;
}
.rs-hero__card-title {
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
  font-weight: 700;
  color: var(--rs-ink);
  text-align: center;
  margin-bottom: 22px;
}
.rs-card-list { display: flex; flex-direction: column; gap: 20px; }
.rs-card-item { display: flex; gap: 14px; }
.rs-card-item .rs-icon { color: var(--rs-terracotta); margin-top: 2px; }
.rs-card-item h4 { font-size: 14px; font-weight: 700; color: var(--rs-ink); margin-bottom: 3px; }
.rs-card-item p { font-size: 13px; color: #837d76; line-height: 1.4; }

/* =====================================================================
   PARTNERS — 7 colonnes, logos alignés, texte sous le logo
   ===================================================================== */
.rs-partners {
  background: var(--rs-white);
  padding: clamp(50px, 6vw, 80px) var(--rs-pad);
}
.rs-partners__head {
  text-align: center;
  margin-bottom: 48px;
}
.rs-partners__head svg {
  color: var(--rs-terracotta);
  margin-bottom: 14px;
}
.rs-partners__head h2 {
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 17px;
  font-weight: 600;
  color: var(--rs-ink);
}

.rs-partners__grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  align-items: start;
}

.rs-partner {
  text-align: center;
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  border-left: 1px solid var(--rs-line);
}
.rs-partner:first-child { border-left: 0; }

.rs-partner__logo {
  height: 60px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}
.rs-partner__logo img {
  max-height: 60px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
}
.rs-partner__logo a {
  display: contents;
}

.rs-partner__tag {
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 10px;
  font-weight: 600;
  color: var(--rs-muted);
  line-height: 1.5;
}

.rs-partners__statement {
  max-width: 760px;
  margin: 44px auto 0;
  text-align: center;
  font-size: 18px;
  line-height: 1.6;
  color: #5d5852;
}

/* =====================================================================
   IMPACT
   ===================================================================== */
.rs-impact {
  background: var(--rs-cream-2);
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  align-items: center;
}
.rs-impact__content {
  padding: clamp(44px, 5vw, 72px) clamp(28px, 3vw, 56px) clamp(44px, 5vw, 72px) var(--rs-edge);
}
.rs-impact__content > .rs-eyebrow { margin-bottom: 40px; }
.rs-stats { display: grid; grid-template-columns: repeat(5, 1fr); }
.rs-stat {
  padding: 0 18px;
  border-left: 1px solid var(--rs-line);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.rs-stat:first-child { border-left: 0; padding-left: 0; }
.rs-stat__icon { color: #7d756c; margin-bottom: 22px; }
.rs-stat__num {
  font-size: clamp(26px, 2.4vw, 34px);
  font-weight: 600;
  color: var(--rs-terracotta);
  line-height: 1;
  margin-bottom: 10px;
}
.rs-stat__label { font-size: 13px; color: #6f6a64; line-height: 1.4; }
.rs-impact__media {
  align-self: stretch;
  min-height: 340px;
  background-size: cover;
  background-position: center;
}

/* =====================================================================
   SIG — values
   ===================================================================== */
.rs-sig {
  background: var(--rs-white);
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  align-items: stretch;
}
.rs-sig__media {
  min-height: 420px;
  background-size: cover;
  background-position: center;
}
.rs-sig__content {
  padding: clamp(44px, 5vw, 76px) var(--rs-edge) clamp(44px, 5vw, 76px) clamp(28px, 3vw, 56px);
  align-self: center;
  max-width: 720px;
}
.rs-sig__content h2 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 30px;
}
.rs-checklist {
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 32px;
}
.rs-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: #5a554f;
}
.rs-checklist .rs-icon { color: var(--rs-terracotta); }
.rs-sig__callout {
  background: var(--rs-blush);
  border-radius: 10px;
  padding: 24px 28px;
  display: flex;
  gap: 18px;
  align-items: center;
}
.rs-sig__callout .rs-icon { color: var(--rs-terracotta); flex: 0 0 auto; }
.rs-sig__callout p { font-size: 15px; color: #6a6259; line-height: 1.55; }

/* =====================================================================
   SOUTIEN
   ===================================================================== */
.rs-soutien {
  background: var(--rs-cream-2);
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  align-items: center;
}
.rs-soutien__content {
  padding: clamp(44px, 5vw, 72px) clamp(28px, 3vw, 56px) clamp(44px, 5vw, 72px) var(--rs-edge);
}
.rs-soutien__content h2 {
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 500;
  margin: 6px 0 40px;
}
.rs-help { display: grid; grid-template-columns: repeat(5, 1fr); }
.rs-help__item {
  padding: 0 16px;
  border-left: 1px solid var(--rs-line);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.rs-help__item:first-child { border-left: 0; padding-left: 0; }
.rs-help__icon { color: #7d756c; margin-bottom: 18px; }
.rs-help__item p { font-size: 13px; color: #6f6a64; line-height: 1.45; }
.rs-soutien__media {
  align-self: stretch;
  min-height: 320px;
  background-size: cover;
  background-position: center;
}

/* =====================================================================
   GREEN CTA BAND
   ===================================================================== */
.rs-cta {
  background: var(--rs-sage);
  color: #fff;
}
.rs-cta__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(36px, 4vw, 52px) var(--rs-pad);
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.rs-cta__text { flex: 1 1 460px; }
.rs-cta__text h2 {
  color: #fff;
  font-size: clamp(24px, 2.6vw, 33px);
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 12px;
}
.rs-cta__text p { color: rgba(255, 255, 255, .9); font-size: 17px; }
.rs-cta__buttons { display: flex; flex-direction: column; gap: 14px; min-width: 320px; }
.rs-cta__buttons .rs-btn { justify-content: center; }

/* =====================================================================
   FOOTER
   ===================================================================== */
.rs-footer { background: var(--rs-footer); padding: clamp(44px, 5vw, 64px) var(--rs-pad); }
.rs-footer__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
  gap: 40px;
}
.rs-footer__col h4 {
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
  font-weight: 700;
  color: var(--rs-ink);
  margin-bottom: 16px;
}
.rs-footer__col p {
  font-size: 13px;
  color: #6f6a64;
  line-height: 1.7;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.rs-footer__col--center { text-align: center; }
.rs-socials { display: flex; gap: 14px; justify-content: center; margin-bottom: 16px; }
.rs-social {
  width: 38px; height: 38px;
  border: 1px solid var(--rs-line);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: #6f6a64;
  transition: all .18s ease;
}
.rs-social:hover { color: var(--rs-terracotta); border-color: var(--rs-terracotta); }
.rs-footer__site {
  font-size: 14px;
  color: var(--rs-ink);
  letter-spacing: .02em;
  text-transform: none;
  font-weight: 500;
}
.rs-footer__logo { display: flex; justify-content: center; margin-top: 6px; }
.rs-footer__logo img { height: 86px; width: auto; }

.rs-sig-badge { display: flex; justify-content: center; margin: 8px 0 0; }
.rs-sig-badge img {height: 50px; }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 1080px) {
  .rs-nav { display: none; }
  .rs-header__inner { justify-content: space-between; }
}

@media (max-width: 900px) {
  .rs-hero,
  .rs-impact,
  .rs-sig,
  .rs-soutien { grid-template-columns: 1fr; }

  .rs-hero__text { padding: 48px var(--rs-pad); order: 1; }
  .rs-hero__media { order: 2; min-height: 420px; }

  .rs-impact__content,
  .rs-soutien__content { padding: 48px var(--rs-pad); }
  .rs-impact__media,
  .rs-soutien__media { min-height: 300px; order: 2; }

  .rs-sig__media { order: 2; min-height: 300px; }
  .rs-sig__content { order: 1; padding: 48px var(--rs-pad); }

  /* Partners : 4 colonnes sur tablette */
  .rs-partners__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 32px 0;
  }
  .rs-partner:nth-child(5) { border-left: 0; }
}

@media (max-width: 760px) {
  .rs-stats { grid-template-columns: repeat(2, 1fr); gap: 30px 0; }
  .rs-stat:nth-child(odd) { border-left: 0; padding-left: 0; }
  .rs-help { grid-template-columns: repeat(2, 1fr); gap: 30px 0; }
  .rs-help__item:nth-child(odd) { border-left: 0; padding-left: 0; }
  .rs-checklist { grid-template-columns: 1fr; }
  .rs-footer__inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .rs-cta__buttons { min-width: 0; width: 100%; }
}

@media (max-width: 520px) {
  /* Partners : 2 colonnes sur mobile */
  .rs-partners__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .rs-partner:nth-child(odd) { border-left: 0; }
  .rs-partner:nth-child(5) { border-left: 1px solid var(--rs-line); }

  .rs-footer__inner { grid-template-columns: 1fr; text-align: center; }
  .rs-footer__col p, .rs-footer__col h4 { text-align: center; }
   .rs-hero__card { 
    position: static; 
    transform: none; 
    width: 92%; 
    margin: 16px auto 24px; 
  }
}
  .rs-hero__media { min-height: 300px; }
}

.rs-btn--primary {
    color: #ffffff !important;
}

.fusion-mobile-menu-icons .go-to { display: none !important; }