/* =============================================================
   Questor — theme.css
   Scope : tokens globaux + composants header / footer (préfixés
   .q-site-header / .q-site-footer pour ne pas casser optime).
   Source : html/Questor Landing Page.html
   ============================================================= */

:root {
  --cream:        #FBF5EA;
  --cream-2:      #F5ECD9;
  --cream-3:      #EFE3CC;
  --orange:       #D97845;
  --orange-dark:  #C96635;
  --orange-soft:  #E89268;
  --navy:         #1E3A5F;
  --navy-deep:    #142A47;
  --green:        #2F4A32;
  --green-dark:   #253C28;
  --green-darker: #1C2F1F;
  --green-light:  #3E5E42;
  --ink:          #1A1F1A;
  --muted:        #6B6457;
  --line:         #E7DCC4;
  --white:        #FFFFFF;
}

/* ---------- Boutons réutilisables (préfixés q-) ---------- */
.q-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.2;
  border-radius: 999px;
  border: 1.5px solid transparent;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  transition: all .2s ease;
}
.q-btn--primary {
  background: var(--orange);
  color: var(--white) !important;
  box-shadow: 0 4px 12px rgba(217, 120, 69, 0.25);
}
.q-btn--primary:hover {
  background: var(--orange-dark);
  color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(217, 120, 69, 0.35);
}
/* Force le texte des enfants (span, em, strong, etc.) en blanc même si CKEditor a injecté un style inline lors de l'édition. */
.q-btn--primary,
.q-btn--primary * {
  color: var(--white) !important;
}
.q-btn--outline {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange);
}
.q-btn--outline:hover { background: var(--orange); color: var(--white) !important; }
.q-btn--outline:hover * { color: var(--white) !important; }
.q-btn--sm { padding: 9px 16px; font-size: 14px; }
.q-btn svg { width: 16px; height: 16px; }

/* ---------- HEADER ---------- */
.q-site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 245, 234, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(231, 220, 196, 0.5);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
}
.q-site-header *,
.q-site-header *::before,
.q-site-header *::after { box-sizing: border-box; }
.q-site-header a { color: inherit; text-decoration: none; }

.q-site-header__inner {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 4px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
}
.q-site-header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 64px;
  flex-shrink: 0;
}
.q-site-header__logo img { height: 100%; width: auto; display: block; }

.q-site-header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.q-site-header__nav a {
  padding: 6px 2px;
  position: relative;
  transition: color .2s;
  color: var(--navy);
}
.q-site-header__nav a:hover { color: var(--orange); }
.q-site-header__nav a.active { color: var(--orange); }
.q-site-header__nav a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

@media (max-width: 900px) {
  .q-site-header__nav { display: none; }
}

/* ---------- FOOTER ---------- */
.q-site-footer {
  background: var(--green-darker);
  color: rgba(255, 255, 255, 0.7);
  padding: 40px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14px;
  line-height: 1.6;
}
.q-site-footer *,
.q-site-footer *::before,
.q-site-footer *::after { box-sizing: border-box; }
.q-site-footer a { color: inherit; text-decoration: none; }
.q-site-footer ul { list-style: none; margin: 0; padding: 0; }

.q-site-footer__inner {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.q-site-footer__newsletter {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 36px 40px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}
.q-site-footer__newsletter::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: rgba(217, 120, 69, 0.12);
}
.q-site-footer__newsletter-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 2fr auto;
  gap: 28px;
  align-items: center;
}
.q-site-footer__newsletter h6 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--white);
  margin: 0 0 6px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.q-site-footer__newsletter p {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
}
.q-site-footer__newsletter-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.q-site-footer__newsletter-form input {
  flex: 1;
  min-width: 180px;
  padding: 13px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-family: inherit;
  font-size: 14px;
  outline: none;
}
.q-site-footer__newsletter-form input::placeholder { color: rgba(255, 255, 255, 0.5); }
.q-site-footer__newsletter-form input:focus { border-color: rgba(217, 120, 69, 0.6); }
.q-site-footer__newsletter-form textarea {
  flex: 1 1 100%;
  min-width: 100%;
  padding: 13px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-family: inherit;
  font-size: 14px;
  outline: none;
  resize: vertical;
}
.q-site-footer__newsletter-form textarea::placeholder { color: rgba(255, 255, 255, 0.5); }
.q-site-footer__newsletter-form textarea:focus { border-color: rgba(217, 120, 69, 0.6); }
.q-site-footer__socials {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}
.q-site-footer__socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  color: var(--white);
  transition: background .2s, color .2s;
}
.q-site-footer__socials a:hover { background: var(--orange); color: var(--white); }
.q-site-footer__socials svg { width: 16px; height: 16px; }

.q-site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}
.q-site-footer__brand .q-site-footer__brand-logo {
  height: 40px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  margin-bottom: 14px;
}
.q-site-footer__brand p {
  font-size: 13px;
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.55);
  max-width: 340px;
}
.q-site-footer__brand .q-site-footer__contact {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 10px;
}
.q-site-footer__brand .q-site-footer__contact span {
  display: block;
  margin-bottom: 4px;
}
.q-site-footer__brand .q-site-footer__contact strong {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  margin-right: 6px;
}

.q-site-footer__col h4 {
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 16px;
}
.q-site-footer__col li { margin-bottom: 10px; font-size: 14px; }
.q-site-footer__col a { transition: color .2s; }
.q-site-footer__col a:hover { color: var(--orange-soft); }

.q-site-footer__bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}
.q-site-footer__bottom-links { display: flex; flex-wrap: wrap; gap: 18px; }
.q-site-footer__bottom-links a:hover { color: var(--orange-soft); }

@media (max-width: 900px) {
  .q-site-footer__newsletter-grid { grid-template-columns: 1fr; }
  .q-site-footer__socials { justify-content: flex-start; }
  .q-site-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .q-site-footer__grid { grid-template-columns: 1fr; }
  .q-site-footer__newsletter { padding: 28px 24px; }
}

/* ---------- Wrapper neutre (compat ancien JS optime) ---------- */
.q-site-header + .wrapper-q-bridge,
.wrapper { /* laissé inchangé : optime style.css peut le redéfinir */ }

/* =============================================================
   Section "Actualités" (questor_actualites.tpl)
   Reproduit la section #parcours de la landing pour servir de
   liste d'articles dynamiques (PageClass.post_type).
   ============================================================= */

.q-actualites {
  padding: 40px 0 40px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--cream);
}
.q-actualites *,
.q-actualites *::before,
.q-actualites *::after { box-sizing: border-box; }
.q-actualites a { color: inherit; text-decoration: none; }

.q-actualites__inner {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ----- Section head ----- */
.q-section-head { text-align: center; margin-bottom: 48px; }
.q-section-head__title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy);
  line-height: 1.1;
  font-size: clamp(28px, 3.4vw, 42px);
  margin: 12px 0 14px;
}
.q-section-head__desc {
  color: var(--muted);
  font-size: 16px;
  max-width: 560px;
  margin: 0 auto;
}

/* ----- Eyebrow ----- */
.q-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(217, 120, 69, 0.1);
  color: var(--orange);
  font-size: 13px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}
.q-eyebrow--green { background: rgba(47, 74, 50, 0.1); color: var(--green); }
.q-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
  display: inline-block;
  flex-shrink: 0;
}

/* ----- Cards grid ----- */
.q-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.q-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.q-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(30, 58, 95, 0.1);
}
.q-card__img {
  aspect-ratio: 16/10;
  position: relative;
  overflow: hidden;
  background: var(--cream-2);
}
.q-card__img a { display: block; width: 100%; height: 100%; }
.q-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.q-card:hover .q-card__img img { transform: scale(1.04); }
.q-card__body {
  padding: 20px 20px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.q-card__title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy);
  line-height: 1.2;
  font-size: 20px;
  margin: 0;
}
.q-card__desc {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
  flex: 1;
}
.q-card__body .q-btn { align-self: flex-start; margin-top: 6px; }

/* ----- Pagination (q-grid) ----- */
.q-pagination {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}
.q-pagination__link {
  display: inline-grid;
  place-items: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
  transition: all .2s ease;
}
.q-pagination__link:hover { border-color: var(--orange); color: var(--orange); }
.q-pagination__link.is-active {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(217, 120, 69, 0.25);
}

/* ----- Link wrapper "Voir tous les articles" ----- */
.q-actualites__link-wrapper { margin-top: 40px; }

/* ----- Responsive ----- */
@media (max-width: 900px) {
  .q-cards-grid { grid-template-columns: 1fr; }
  .q-actualites { padding: 40px 0 40px; }
}

/* =============================================================
   Sections additionnelles — landing / parcours / article
   ============================================================= */

/* Reset partagé pour toutes les sections q-* */
.q-hero, .q-map, .q-about, .q-steps, .q-stats, .q-cta-band,
.q-breadcrumb, .q-parcours-hero, .q-stages, .q-info-cards, .q-tourism,
.q-article-header, .q-article-body, .q-countdown-section, .q-newsletter-section,
.q-article-section, .q-actualites {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
}
.q-hero *, .q-map *, .q-about *, .q-steps *, .q-stats *, .q-cta-band *,
.q-breadcrumb *, .q-parcours-hero *, .q-stages *, .q-info-cards *, .q-tourism *,
.q-article-header *, .q-article-body *, .q-countdown-section *, .q-newsletter-section *,
.q-article-section *,
.q-hero *::before, .q-map *::before, .q-about *::before, .q-steps *::before,
.q-stats *::before, .q-cta-band *::before, .q-breadcrumb *::before,
.q-parcours-hero *::before, .q-stages *::before, .q-info-cards *::before,
.q-tourism *::before, .q-article-header *::before, .q-article-body *::before,
.q-countdown-section *::before, .q-newsletter-section *::before,
.q-article-section *::before { box-sizing: border-box; }

.q-hero a, .q-map a, .q-about a, .q-steps a, .q-stats a, .q-cta-band a,
.q-breadcrumb a, .q-parcours-hero a, .q-stages a, .q-info-cards a, .q-tourism a,
.q-article-header a, .q-article-body a, .q-newsletter-section a { color: inherit; text-decoration: none; }

.q-hero img, .q-about img, .q-tourism img, .q-parcours-hero img,
.q-article-header img, .q-article-body img { max-width: 100%; display: block; }

.q-hero h1, .q-hero h2, .q-hero h3, .q-hero h4,
.q-about h1, .q-about h2, .q-about h3,
.q-steps h1, .q-steps h2, .q-steps h3,
.q-cta-band h1, .q-cta-band h2,
.q-parcours-hero h1, .q-parcours-hero h2,
.q-stages h2, .q-stages h3,
.q-info-cards h3, .q-tourism h3,
.q-article-header h1, .q-article-body h2, .q-article-body h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy);
  line-height: 1.1;
  margin: 0;
}

.q-accent { color: var(--orange); font-style: italic; font-family: inherit; }

/* ---------- HERO ---------- */
.q-hero { position: relative; padding: 40px 0 40px; overflow: hidden; background: var(--cream); }
.q-hero__inner {
  position: relative;
  width: 100%; max-width: 1180px;
  margin: 0 auto; padding: 0 24px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 40px;
  align-items: center;
}
.q-hero__bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.q-hero__blob { position: absolute; border-radius: 50%; opacity: 0.5; }
.q-hero__blob--1 { top: -60px; right: 8%; width: 280px; height: 280px; background: #F3E3C6; }
.q-hero__blob--2 { bottom: -40px; left: -80px; width: 220px; height: 220px; background: #EAD9BA; }
.q-hero__dotted-arc {
  position: absolute; top: 40px; left: 44%;
  width: 200px; height: 200px;
  border: 2px dashed #D9C8A5;
  border-radius: 50%; opacity: 0.5;
}
.q-hero__title { font-size: clamp(36px, 5vw, 56px); margin-bottom: 18px; }
.q-hero__lead { font-size: 17px; color: var(--muted); margin: 0 0 28px; max-width: 500px; }
.q-hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }
.q-hero__illustration { position: relative; display: flex; justify-content: center; align-items: center; }
.q-hero__illustration::before {
  content: ''; position: absolute; inset: 10% -5% 0 -5%;
  background: radial-gradient(ellipse at center, #F3E3C6 0%, transparent 65%);
  z-index: 0;
}
.q-hero__illustration img {
  position: relative; z-index: 1;
  max-width: 100%; height: auto;
  filter: drop-shadow(0 20px 30px rgba(30, 58, 95, 0.15));
}

/* ---------- MAP ---------- */
.q-map { padding: 40px 0 40px; background: var(--cream); }
.q-map__inner { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.q-map__frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16/7;
  background: #D8E3D0;
  box-shadow: 0 10px 40px rgba(30, 58, 95, 0.08);
  border: 1px solid var(--line);
}
.q-map__canvas { width: 100%; height: 100%; }
.q-map__legend {
  position: absolute; bottom: 16px; left: 16px;
  background: var(--white); border-radius: 10px;
  padding: 10px 14px; font-size: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  display: flex; flex-direction: column; gap: 6px;
  color: var(--muted);
}
.q-map__legend-item { display: flex; align-items: center; gap: 8px; }
.q-map__swatch { width: 10px; height: 10px; border-radius: 50%; display: inline-block; flex-shrink: 0; }

/* ---------- CARD : badges + meta ---------- */
.q-card__badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--white); color: var(--green);
  font-size: 12px; font-weight: 600;
  padding: 5px 10px; border-radius: 999px;
  display: inline-flex; align-items: center; gap: 6px;
}
.q-card__badge::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%; background: currentColor;
}
.q-card__badge--easy   { color: var(--green); }
.q-card__badge--medium { color: #C98235; }
.q-card__badge--hard   { color: var(--orange-dark); }

.q-card__meta {
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px; font-size: 13px; color: var(--muted);
  margin-top: auto;
}
.q-card__stats { display: flex; gap: 12px; }
.q-card__stat  { display: inline-flex; align-items: center; gap: 4px; }
.q-card__stat svg { width: 14px; height: 14px; }

/* ---------- ABOUT (Maurienne) ---------- */
.q-about { padding: 40px 0 40px; background: var(--cream); }
.q-about__inner {
  width: 100%; max-width: 1180px;
  margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
  align-items: center;
}
.q-about__media {
  position: relative; border-radius: 22px; overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 16px 40px rgba(30, 58, 95, 0.12);
  background: var(--green);
}
.q-about__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.q-about__badge {
  position: absolute; bottom: 20px; left: 20px;
  background: var(--white); border-radius: 14px;
  padding: 14px 18px; box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  display: flex; align-items: center; gap: 12px;
}
.q-about__badge-num {
  font-family: 'Fraunces', serif; font-size: 28px; font-weight: 700;
  color: var(--orange); line-height: 1;
}
.q-about__badge-label { font-size: 12px; color: var(--muted); line-height: 1.2; max-width: 90px; }
.q-about__title { font-size: clamp(28px, 3vw, 38px); margin: 14px 0 18px; }
.q-about__desc { color: var(--muted); margin: 0 0 14px; font-size: 15px; }

.q-feature-list { list-style: none; margin: 18px 0 0; padding: 0; }
.q-feature-list li {
  display: flex; gap: 12px; align-items: flex-start;
  margin-bottom: 10px; font-size: 15px; color: var(--ink);
}
.q-feature-list__check {
  flex-shrink: 0; width: 22px; height: 22px;
  border-radius: 50%; background: var(--green); color: white;
  display: grid; place-items: center;
  font-size: 12px; font-weight: 700; margin-top: 1px;
}

/* ---------- STEPS (sur fond vert) ---------- */
.q-steps { background: var(--green); color: var(--white); padding: 40px 0 40px; position: relative; overflow: hidden; }
.q-steps::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 300px; height: 300px; border-radius: 50%;
  background: rgba(255,255,255,0.03);
}
.q-steps__inner { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 24px; position: relative; }
.q-section-head { text-align: center; margin-bottom: 48px; }
.q-section-head__title { font-size: clamp(28px, 3.4vw, 42px); margin: 12px 0 14px; }
.q-section-head__desc { color: var(--muted); font-size: 16px; max-width: 560px; margin: 0 auto; }
.q-section-head--inverse .q-section-head__title { color: var(--white); }
.q-section-head--inverse .q-section-head__desc  { color: rgba(255,255,255,0.7); }
.q-eyebrow--inverse { background: rgba(255,255,255,0.12); color: #E8D6A8; }

.q-steps__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; position: relative; }
.q-step-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  padding: 28px 24px;
  text-align: center;
  transition: all .25s ease;
}
.q-step-card:hover { background: rgba(255,255,255,0.07); transform: translateY(-3px); }
.q-step-card__icon {
  display: block;
  width: 72px; height: 72px;
  margin: 0 auto 16px;
  object-fit: contain;
}
.q-steps .q-step-card__title { color: #E8D6A8; font-size: 19px; margin-bottom: 8px; }
.q-step-card__desc { color: rgba(255,255,255,0.65); font-size: 14px; margin: 0; }

/* ---------- STATS ---------- */
.q-stats {
  position: relative;
  overflow: hidden;
  padding: 80px 0 60px;
  background: var(--cream);
}
.q-stats::before,
.q-stats::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.q-stats::before {
  width: 220px; height: 220px;
  background: rgba(62, 94, 66, 0.12);
  top: -60px; left: 4%;
}
.q-stats::after {
  width: 240px; height: 240px;
  background: rgba(239, 227, 204, 0.6);
  bottom: -90px; right: 6%;
}
.q-stats__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.q-stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.q-stat-item { position: relative; }
.q-stat-item__num {
  font-family: 'Fraunces', serif;
  font-size: 36px;
  font-weight: 700; color: var(--orange);
  line-height: 1; margin-bottom: 8px;
}
.q-stat-item:nth-child(1) .q-stat-item__num { color: var(--green); }
.q-stat-item:nth-child(2) .q-stat-item__num { color: var(--orange); }
.q-stat-item:nth-child(3) .q-stat-item__num { color: #D9A441; }
.q-stat-item:nth-child(4) .q-stat-item__num { color: var(--green); }
.q-stat-item__label { color: var(--muted); font-size: 14px; }

/* ---------- CTA BAND ---------- */
.q-cta-band { background: var(--green-darker); color: var(--white); padding: 40px 0 40px; text-align: center; }
.q-cta-band__inner { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.q-cta-band__title { color: var(--white); font-size: clamp(28px, 3.4vw, 40px); margin-bottom: 14px; }
.q-cta-band__desc  { color: rgba(255,255,255,0.7); max-width: 560px; margin: 0 auto 28px; }
.q-cta-band__buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.q-btn--ghost-light {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}
.q-btn--ghost-light:hover { background: rgba(255,255,255,0.2); color: var(--white); }

/* ---------- BREADCRUMB ---------- */
.q-breadcrumb { background: var(--cream); padding: 40px 0 40px; }
.q-breadcrumb__inner { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 24px; font-size: 13px; color: var(--muted); }
.q-breadcrumb__link:hover { color: var(--orange); }
.q-breadcrumb__sep     { margin: 0 8px; opacity: 0.5; }
.q-breadcrumb__current { color: var(--navy); font-weight: 500; }

/* ---------- PARCOURS HERO ---------- */
.q-parcours-hero { padding: 40px 0 40px; background: var(--cream); }
.q-parcours-hero__inner {
  width: 100%; max-width: 1180px;
  margin: 0 auto; padding: 0 24px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px; align-items: center;
}
.q-parcours-hero__title { font-size: clamp(36px, 5vw, 56px); margin-bottom: 16px; }
.q-parcours-hero__lead { font-size: 17px; color: var(--muted); margin: 0 0 26px; max-width: 520px; }

.q-meta-strip { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.q-meta-chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); border: 1px solid var(--line);
  padding: 10px 14px; border-radius: 999px;
  font-size: 13px; color: var(--navy); font-weight: 500;
}
.q-meta-chip svg { width: 15px; height: 15px; color: var(--orange); flex-shrink: 0; }

.q-parcours-hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }

.q-phone-wrap { display: flex; justify-content: center; align-items: center; position: relative; }
.q-phone-wrap::before {
  content: ''; position: absolute; inset: 5% -10% 5% -10%;
  background: radial-gradient(ellipse at center, #F3E3C6 0%, transparent 65%);
  z-index: 0;
}
.q-phone {
  position: relative; z-index: 1;
  width: 390px; height: 620px;
  background: #1A1F1A; border-radius: 44px; padding: 12px;
  box-shadow:
    0 0 0 2px #2A2F2A,
    0 30px 60px rgba(30, 58, 95, 0.25),
    0 10px 20px rgba(30, 58, 95, 0.15);
}
.q-phone::before {
  content: ''; position: absolute;
  right: -2px; top: 120px; width: 3px; height: 60px;
  background: #2A2F2A; border-radius: 0 2px 2px 0;
}
.q-phone::after {
  content: ''; position: absolute;
  left: -2px; top: 140px; width: 3px; height: 90px;
  background: #2A2F2A; border-radius: 2px 0 0 2px;
  box-shadow: 0 -50px 0 0 #2A2F2A, 0 -90px 0 0 #2A2F2A;
}
.q-phone__screen {
  position: relative; width: 100%; height: 100%;
  border-radius: 34px; overflow: hidden; background: var(--cream);
}
.q-phone__screen img { width: 100%; height: 100%; object-fit: cover; }
.q-phone__notch {
  position: absolute; top: 8px; left: 50%;
  transform: translateX(-50%);
  width: 100px; height: 26px;
  background: #1A1F1A; border-radius: 999px; z-index: 10;
}

/* ---------- STAGES (timeline) ---------- */
.q-stages { padding: 40px 0 40px; background: var(--cream); }
.q-stages__inner { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.q-stages__list { max-width: 780px; margin: 0 auto; position: relative; }
.q-stages__list::before {
  content: ''; position: absolute;
  left: 23px; top: 28px; bottom: 28px; width: 2px;
  background: repeating-linear-gradient(to bottom, var(--orange) 0 6px, transparent 6px 12px);
  opacity: 0.4;
}
.q-stage { display: grid; grid-template-columns: 48px 1fr; gap: 20px; padding: 16px 0; position: relative; }
.q-stage__num {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--orange); color: var(--orange);
  display: grid; place-items: center;
  font-family: 'Fraunces', serif; font-weight: 700; font-size: 18px;
  position: relative; z-index: 1;
}
.q-stage--active .q-stage__num { background: var(--orange); color: white; box-shadow: 0 4px 14px rgba(217,120,69,0.4); }
.q-stage--done   .q-stage__num { background: var(--green); color: white; border-color: var(--green); }
.q-stage__body { background: var(--white); border: 1px solid var(--line); border-radius: 14px; padding: 16px 20px; }
.q-stage--active .q-stage__body { border-color: var(--orange); box-shadow: 0 6px 20px rgba(217,120,69,0.1); }
.q-stage__title { font-size: 18px; margin-bottom: 4px; }
.q-stage__meta { display: flex; gap: 14px; color: var(--muted); font-size: 12px; margin-bottom: 8px; }
.q-stage__body p { color: var(--muted); font-size: 14px; margin: 0; }
.q-stage__tag {
  display: inline-block; font-size: 11px; font-weight: 600;
  padding: 3px 9px; border-radius: 999px; margin-top: 8px;
}
.q-stage__tag--active { background: rgba(217,120,69,0.12); color: var(--orange); }
.q-stage__tag--done   { background: rgba(47,74,50,0.12);  color: var(--green); }
.q-stage__tag--locked { background: var(--cream-2);       color: var(--muted); }

/* ---------- INFO CARDS ---------- */
.q-info-cards { padding: 40px 0 40px; background: var(--cream); }
.q-info-cards__inner { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.q-info-cards__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.q-info-card { background: var(--white); border: 1px solid var(--line); border-radius: 16px; padding: 24px; }
.q-info-card__ico {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--cream-2); color: var(--orange);
  display: grid; place-items: center;
  margin-bottom: 14px;
}
.q-info-card__ico svg { width: 22px; height: 22px; }
.q-info-card h3 { font-size: 17px; margin-bottom: 6px; color: var(--navy); font-family: 'Fraunces', Georgia, serif; font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; }
.q-info-card p  { font-size: 13px; color: var(--muted); margin: 0; }

/* ---------- TOURISM PARTNER ---------- */
.q-tourism { padding: 40px 0 40px; background: var(--cream); }
.q-tourism__inner { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.q-tourism__card {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  gap: 28px; align-items: center;
  background: var(--white); border: 1px solid var(--line);
  border-radius: 22px; padding: 24px 28px;
  box-shadow: 0 10px 30px rgba(30,58,95,0.06);
  position: relative; overflow: hidden;
}
.q-tourism__card::before {
  content: ''; position: absolute; top: -40px; right: -40px;
  width: 160px; height: 160px; border-radius: 50%;
  background: rgba(217,120,69,0.06);
}
.q-tourism__visual {
  position: relative;
  border-radius: 16px; overflow: hidden;
  aspect-ratio: 1/1;
  background: linear-gradient(135deg, var(--green), #3E5E42);
  display: grid; place-items: center;
}
.q-tourism__visual svg { width: 78%; height: 78%; color: #E8D6A8; }
.q-tourism__visual img { width: 100%; height: 100%; object-fit: cover; display: block; }
.q-tourism__body { position: relative; }
.q-tourism__eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--cream-2); color: var(--green);
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 5px 10px; border-radius: 999px;
  margin-bottom: 10px;
}
.q-tourism__body h3 { font-size: 22px; margin-bottom: 8px; }
.q-tourism__body p  { color: var(--muted); font-size: 14px; margin: 0 0 14px; max-width: 520px; }
.q-tourism__meta { display: flex; flex-wrap: wrap; gap: 16px; font-size: 13px; color: var(--navy); }
.q-tourism__meta > span { display: inline-flex; align-items: center; gap: 6px; }
.q-tourism__meta svg { width: 14px; height: 14px; color: var(--orange); flex-shrink: 0; }
.q-tourism__cta { display: flex; flex-direction: column; gap: 10px; position: relative; }
.q-tourism__cta .q-btn { justify-content: center; }

/* ---------- ARTICLE HEADER ---------- */
.q-article-header { padding: 40px 0 40px; text-align: center; background: var(--cream); }
.q-article-header__inner { width: 100%; max-width: 860px; margin: 0 auto; padding: 0 24px; }
.q-article-header__title { font-size: clamp(36px, 5.5vw, 60px); max-width: 800px; margin: 0 auto 20px; line-height: 1.15; }
.q-article-header__subtitle { font-size: 18px; color: var(--muted); max-width: 620px; margin: 0 auto 28px; font-weight: 400; }
.q-article-header__meta { display: inline-flex; align-items: center; gap: 16px; font-size: 14px; color: var(--muted); flex-wrap: wrap; justify-content: center; }
.q-article-header__author { display: inline-flex; align-items: center; gap: 10px; }
.q-article-header__avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-soft));
  color: white; display: grid; place-items: center;
  font-family: 'Fraunces', serif; font-weight: 700; font-size: 14px;
}
.q-article-header__author strong { color: var(--navy); font-weight: 600; }
.q-article-header__sep { opacity: 0.4; }

.q-article-header__cover {
  position: relative;
  margin: 30px auto 0;
  max-width: 1180px;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 16/8;
  box-shadow: 0 20px 50px rgba(30, 58, 95, 0.15);
  border: 1px solid var(--line);
}
.q-article-header__cover img { width: 100%; height: 100%; object-fit: cover; display: block; }

.q-eyebrow--pulse { text-transform: uppercase; letter-spacing: 0.08em; padding: 8px 16px; }
.q-eyebrow--pulse::before { animation: q-pulse 1.6s infinite; }
@keyframes q-pulse { 0%,100% { opacity: 1 } 50% { opacity: 0.3 } }

/* ---------- ARTICLE BODY ---------- */
.q-article-body { padding: 40px 0 40px; background: var(--cream); }
.q-article-body__inner { width: 100%; max-width: 860px; margin: 0 auto; padding: 0 24px; line-height: 1.7; }
.q-article-body__lead {
  font-family: 'Fraunces', serif;
  font-size: 22px; color: var(--navy);
  line-height: 1.5; margin-bottom: 36px;
  font-weight: 500; letter-spacing: -0.01em;
}
.q-article-body h2 { font-size: 28px; margin: 48px 0 16px; }
.q-article-body h3 { font-size: 20px; margin: 32px 0 12px; }
.q-article-body p  { font-size: 17px; color: var(--ink); margin: 0 0 20px; }
.q-article-body__list { margin: 0 0 24px; padding-left: 0; list-style: none; }
.q-article-body__list li {
  padding-left: 32px; position: relative;
  margin-bottom: 10px; font-size: 16px;
}
.q-article-body__list li::before {
  content: ''; position: absolute;
  left: 0; top: 10px; width: 20px; height: 2px;
  background: var(--orange); border-radius: 2px;
}
.q-pull-quote {
  border-left: 3px solid var(--orange);
  padding: 10px 0 10px 24px;
  margin: 32px 0;
  font-family: 'Fraunces', serif;
  font-style: italic; font-size: 22px;
  color: var(--navy); line-height: 1.4;
  display: block;
}
.q-info-box {
  background: var(--white); border: 1px solid var(--line);
  border-radius: 16px; padding: 24px; margin: 32px 0;
  display: flex; gap: 18px;
}
.q-info-box__ico {
  flex-shrink: 0; width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--cream-2); color: var(--orange);
  display: grid; place-items: center;
}
.q-info-box__ico svg { width: 22px; height: 22px; }
.q-info-box h3 { font-size: 17px; margin-bottom: 6px; }
.q-info-box p  { font-size: 14px; color: var(--muted); margin: 0; }

/* ---------- COUNTDOWN ---------- */
.q-countdown-section { padding: 40px 0 40px; background: var(--cream); }
.q-countdown-section__inner { width: 100%; max-width: 860px; margin: 0 auto; padding: 0 24px; }
.q-countdown-box {
  background: var(--white); border: 1px solid var(--line);
  border-radius: 20px; padding: 28px;
  text-align: center;
}
.q-countdown-box__label {
  text-transform: uppercase; letter-spacing: 0.1em;
  font-size: 12px; color: var(--muted);
  font-weight: 600; margin-bottom: 14px;
}
.q-countdown { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.q-count-cell { background: var(--cream-2); border-radius: 12px; padding: 14px 18px; min-width: 72px; }
.q-count-cell__num {
  font-family: 'Fraunces', serif;
  font-weight: 700; font-size: 32px;
  color: var(--orange); line-height: 1;
}
.q-count-cell__unit {
  font-size: 11px; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-top: 4px;
}

/* ---------- NEWSLETTER ---------- */
.q-newsletter-section { padding: 40px 0 40px; background: var(--cream); }
.q-newsletter-section__inner { width: 100%; max-width: 860px; margin: 0 auto; padding: 0 24px; }
.q-newsletter {
  background: var(--green-darker); color: white;
  border-radius: 24px;
  padding: 48px 40px;
  text-align: center;
  position: relative; overflow: hidden;
}
.q-newsletter::before {
  content: ''; position: absolute;
  top: -80px; right: -80px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: rgba(217,120,69,0.12);
}
.q-newsletter h2 { color: white; margin-bottom: 10px; font-size: 28px; font-family: 'Fraunces', Georgia, serif; font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; }
.q-newsletter p  { color: rgba(255,255,255,0.7); margin-bottom: 24px; font-size: 15px; position: relative; }
.q-newsletter__form {
  display: flex; gap: 10px;
  max-width: 440px; margin: 0 auto;
  position: relative;
}
.q-newsletter__form input {
  flex: 1; padding: 14px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08); color: white;
  border: 1px solid rgba(255,255,255,0.15);
  font-family: inherit; font-size: 14px; outline: none;
}
.q-newsletter__form input::placeholder { color: rgba(255,255,255,0.5); }

/* ---------- ARTICLE + ACCESS MAP ---------- */
.q-article-section { padding: 80px 0 40px; background: var(--cream); }
.q-article-section__inner { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.q-article-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 40px; align-items: start; }

.q-article-col .q-eyebrow { margin-bottom: 16px; }
.q-article-col h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 18px;
  line-height: 1.15;
}
.q-article-col__body { font-size: 16px; color: var(--ink); line-height: 1.75; }
.q-article-col__body h3 {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  color: var(--navy);
  margin: 32px 0 12px;
  line-height: 1.25;
}
.q-article-col__body p { font-size: 16px; color: var(--ink); margin-bottom: 16px; line-height: 1.75; }
.q-article-col__body p.lead-p {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  color: var(--navy);
  line-height: 1.5;
  font-weight: 500;
  margin-bottom: 24px;
}
.q-article-col__body p.muted-p { color: var(--muted); font-size: 15px; }
.q-article-col__body strong { color: var(--ink); font-weight: 700; }

.q-pull-quote {
  border-left: 3px solid var(--orange);
  padding: 6px 0 6px 20px;
  margin: 24px 0;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 19px;
  color: var(--navy);
  line-height: 1.45;
}

.q-access-col { position: sticky; top: 90px; }
.q-access-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(30, 58, 95, 0.08);
}
.q-access-map {
  position: relative;
  aspect-ratio: 4/2.8;
  min-height: 280px;
  overflow: hidden;
  background: #E8EAD6;
}
.q-access-map__canvas { width: 100%; height: 100%; min-height: 280px; }
.q-access-map .q-map-pill {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 2;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(4px);
  color: var(--orange);
  font-size: 11px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  pointer-events: none;
}
.q-access-map .q-map-pill svg { width: 12px; height: 12px; }

.q-access-body { padding: 20px 22px 22px; }
.q-access-body h3 {
  font-family: 'Fraunces', serif;
  font-size: 17px;
  color: var(--navy);
  margin-bottom: 16px;
}
.q-access-row {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.q-access-row:last-of-type { border-bottom: none; padding-bottom: 14px; }
.q-access-ico {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 10px;
  background: var(--cream-2);
  color: var(--orange);
  display: grid; place-items: center;
}
.q-access-ico svg { width: 15px; height: 15px; }
.q-access-row > div:last-child { min-width: 0; }
.q-access-row strong {
  display: block;
  color: var(--navy);
  font-size: 13px;
  margin-bottom: 2px;
  font-weight: 700;
}
.q-access-row span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
  display: block;
}
.q-access-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  padding: 10px 16px;
  background: var(--orange);
  color: white !important;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  transition: background .2s;
  text-decoration: none;
}
.q-access-link:hover { background: var(--orange-dark); color: white !important; }
.q-access-link svg { width: 13px; height: 13px; }

.q-amap-coords { display: none; margin-top: 16px; padding: 12px 14px; border: 1px dashed #cfd9e6; border-radius: 10px; background: #f8fbff; font: 600 12px/1.4 Arial, sans-serif; color: #0f172a; }
.q-amap-coord-row { display: flex; align-items: center; gap: 10px; margin: 4px 0; }
.q-amap-coord-row > span:first-child { min-width: 100px; color: #64748b; font-size: 11px; text-transform: uppercase; letter-spacing: 0.04em; }
.q-amap-coord-val { display: inline-block; min-width: 110px; padding: 3px 8px; border: 1px solid #bfcadb; border-radius: 6px; background: #fff; font-variant-numeric: tabular-nums; font-size: 12px; }
.q-amap-coord-val:focus { outline: 2px solid #2563eb; outline-offset: 1px; }

/* Marker MapLibre custom (réutilise le style de la carte parcours) */
.q-amap-marker { width: 28px; height: 28px; border-radius: 50% 50% 50% 0; background: var(--orange); transform: rotate(-45deg); border: 2px solid #fff; box-shadow: 0 2px 8px rgba(0,0,0,.25); cursor: pointer; }
.q-amap-marker::after { content: ''; display: block; width: 10px; height: 10px; background: #fff; border-radius: 50%; margin: 7px 0 0 7px; }

/* ---------- Responsive global pour ces nouvelles sections ---------- */
@media (max-width: 900px) {
  .q-hero__inner, .q-about__inner, .q-parcours-hero__inner { grid-template-columns: 1fr; }
  .q-steps__grid, .q-info-cards__grid, .q-tourism__card { grid-template-columns: 1fr; }
  .q-stats__grid { grid-template-columns: repeat(2, 1fr); }
  .q-tourism__cta { flex-direction: row; flex-wrap: wrap; }
  .q-phone { width: 280px; height: 580px; }
  .q-article-grid { grid-template-columns: 1fr; }
  .q-access-col { position: static; }
}
@media (max-width: 700px) {
  .q-article-body__lead { font-size: 18px; }
  .q-article-body p { font-size: 16px; }
  .q-newsletter { padding: 32px 24px; }
  .q-newsletter__form { flex-direction: column; }
}
@media (max-width: 560px) {
  .q-stats__grid { grid-template-columns: 1fr; }
}

/* ---------- CONTACT ---------- */
.q-contact-form-section { padding: 80px 0; background: var(--cream); }
.q-contact-form__inner { width: 100%; max-width: 880px; margin: 0 auto; padding: 0 24px; }
.q-contact-form { background: white; border-radius: 24px; padding: 40px; box-shadow: 0 12px 40px rgba(28, 47, 31, 0.06); border: 1px solid var(--cream-3); }
.q-contact-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.q-contact-form__field { display: flex; flex-direction: column; gap: 6px; }
.q-contact-form__field--full { margin-bottom: 24px; }
.q-contact-form__field label { font-size: 13px; font-weight: 600; color: var(--green); text-transform: uppercase; letter-spacing: 0.05em; }
.q-contact-form__field input,
.q-contact-form__field select,
.q-contact-form__field textarea {
  padding: 14px 16px;
  border: 1px solid var(--cream-3);
  border-radius: 12px;
  background: var(--cream);
  font-family: inherit; font-size: 15px; color: var(--ink);
  outline: none; transition: border-color .2s ease, box-shadow .2s ease;
}
.q-contact-form__field input:focus,
.q-contact-form__field select:focus,
.q-contact-form__field textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(217, 120, 69, 0.15);
}
.q-contact-form__field textarea { resize: vertical; min-height: 140px; }
.q-contact-form__submit { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.q-contact-form__note { font-size: 13px; color: var(--green-light); margin: 0; }

.q-contact-info { padding: 80px 0; background: white; }
.q-contact-info__inner { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.q-contact-info__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 40px; }
.q-contact-info__card {
  background: var(--cream); border-radius: 20px; padding: 32px; text-align: center;
  border: 1px solid var(--cream-3); transition: transform .25s ease, box-shadow .25s ease;
}
.q-contact-info__card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(28, 47, 31, 0.08); }
.q-contact-info__ico {
  width: 56px; height: 56px; margin: 0 auto 16px;
  background: var(--orange); color: white; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
}
.q-contact-info__ico svg { width: 26px; height: 26px; }
.q-contact-info__card h3 { font-family: 'Playfair Display', Georgia, serif; font-size: 22px; color: var(--green); margin: 0 0 8px; }
.q-contact-info__card p { font-size: 16px; color: var(--ink); margin: 0 0 8px; line-height: 1.5; }
.q-contact-info__hint { font-size: 13px; color: var(--green-light); font-style: italic; }

@media (max-width: 700px) {
  .q-contact-form { padding: 28px 20px; }
  .q-contact-form__row { grid-template-columns: 1fr; }
  .q-contact-info__grid { grid-template-columns: 1fr; }
}

/* ---------- Édition inline : crayon overlay sur les images ---------- */
.q-edit-image-wrap {
  position: relative;
  display: inline-block;
  line-height: 0;
  max-width: 100%;
}
.q-edit-image-wrap > img { display: block; max-width: 100%; height: auto; }
.q-edit-image-input {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
  opacity: 0; pointer-events: none;
}
.q-edit-image-pencil {
  position: absolute;
  bottom: 8px; right: 8px;
  z-index: 50;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--orange, #D97845);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.18), 0 0 0 2px rgba(255,255,255,0.9);
  transition: transform .15s ease, background .15s ease;
  margin: 0;
}
.q-edit-image-pencil:hover {
  background: var(--orange-dark, #C96635);
  transform: translateY(-1px) scale(1.05);
}
.q-edit-image-pencil svg { display: block; }

/* ---------- Ronds décoratifs sur les sections crème (cohérent avec HERO) ---------- */
.q-map,
.q-about,
.q-breadcrumb,
.q-parcours-hero,
.q-stages,
.q-info-cards,
.q-tourism,
.q-article-header,
.q-article-body,
.q-countdown-section,
.q-newsletter-section,
.q-article-section,
.q-contact-form-section {
  position: relative;
  overflow: hidden;
}
.q-map::before, .q-map::after,
.q-about::before, .q-about::after,
.q-breadcrumb::before, .q-breadcrumb::after,
.q-parcours-hero::before, .q-parcours-hero::after,
.q-stages::before, .q-stages::after,
.q-info-cards::before, .q-info-cards::after,
.q-tourism::before, .q-tourism::after,
.q-article-header::before, .q-article-header::after,
.q-article-body::before, .q-article-body::after,
.q-countdown-section::before, .q-countdown-section::after,
.q-newsletter-section::before, .q-newsletter-section::after,
.q-article-section::before, .q-article-section::after,
.q-contact-form-section::before, .q-contact-form-section::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.45;
  z-index: 0;
}
.q-map::before,
.q-about::before,
.q-breadcrumb::before,
.q-parcours-hero::before,
.q-stages::before,
.q-info-cards::before,
.q-tourism::before,
.q-article-header::before,
.q-article-body::before,
.q-countdown-section::before,
.q-newsletter-section::before,
.q-article-section::before,
.q-contact-form-section::before {
  top: -80px; right: 6%;
  width: 240px; height: 240px;
  background: #F3E3C6;
}
.q-map::after,
.q-about::after,
.q-breadcrumb::after,
.q-parcours-hero::after,
.q-stages::after,
.q-info-cards::after,
.q-tourism::after,
.q-article-header::after,
.q-article-body::after,
.q-countdown-section::after,
.q-newsletter-section::after,
.q-article-section::after,
.q-contact-form-section::after {
  bottom: -60px; left: -80px;
  width: 200px; height: 200px;
  background: #EAD9BA;
}
.q-map > *,
.q-about > *,
.q-breadcrumb > *,
.q-parcours-hero > *,
.q-stages > *,
.q-info-cards > *,
.q-tourism > *,
.q-article-header > *,
.q-article-body > *,
.q-countdown-section > *,
.q-newsletter-section > *,
.q-article-section > *,
.q-contact-form-section > * {
  position: relative;
  z-index: 1;
}
