@charset "UTF-8";
/* ════════════════════════════════
   STYLES PAGE : mon-parcours.html
   WordPress → style-parcours.css
   ════════════════════════════════ */

/* Page hero */
.page-hero {
  padding: 6rem 3rem 3rem;
  background: linear-gradient(135deg, var(--cream) 0%, var(--sand-light) 60%, var(--cream) 100%);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  top: 10%; right: 5%;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(122,97,48,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner {
  max-width: var(--max-w-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto 1fr;
  gap: 2rem 4rem;
  align-items: start;
  position: relative;
  z-index: 1;
}
.page-hero-title { grid-column: 1; grid-row: 1; display: flex; flex-direction: column; gap: 1.5rem; }
.page-hero-body { grid-column: 1; grid-row: 2; display: flex; flex-direction: column; gap: 1.5rem; }
.page-hero-aside { grid-column: 2; grid-row: 1 / 3; position: sticky; top: 7rem; }

/* Eyebrow */
.page-eyebrow {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold-text, #7A6130);
  font-weight: 400;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.page-eyebrow::before { display: none; }

/* Headings */
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 1.8rem;
}
.page-hero h1 em { font-style: italic; color: var(--gold-soft); }

.parcours-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-primary);
  margin: 0 0 0.5rem;
}

/* Texte courant */
.page-hero p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 0.6em;
  font-weight: 400;
}
.page-hero p strong { font-weight: 400; color: var(--text-primary); }

/* Liste situations */
.situations-list {
  padding-left: 1.4rem;
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}
.situations-list a {
  text-decoration: none;
  color: var(--taupe);
  border-bottom: 1px solid var(--sand);
  transition: border-color var(--trans), color var(--trans);
}
.situations-list a:hover { color: var(--gold); border-color: var(--gold-soft); }

/* Carte SEO local */
.seo-local-card {
  background: var(--warm-white);
  border: 1px solid var(--sand);
  border-radius: 16px;
  padding: 1.6rem 2rem;
  margin: 1rem 0 0;
}
.seo-local-card p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}
.seo-local-card strong { font-weight: 400; color: var(--text-primary); }

/* CTA row */
.parcours-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

/* Photo */
.parcours-portrait {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(61,50,40,0.12);
  margin-bottom: 2rem;
  display: block;
}

/* Citation card (aside) */
.parcours-quote-card {
  background: var(--earth);
  color: white;
  padding: 2rem 2.2rem;
  border-radius: 20px;
}
.parcours-quote-card blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 1.2rem;
  font-weight: 400;
}
/* Surcharge footer dans quote card (footer global a un style) */
.parcours-quote-card .quote-footer { color: rgba(255,255,255,0.75); }
.parcours-quote-card .quote-footer a { color: white; text-decoration: none; }

/* Band SEO bas */
.seo-band {
  background: var(--earth);
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
  padding: 1rem 2rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

/* Responsive */
@media (max-width: 900px) {
  .page-hero { padding: 5rem 1.5rem 2.5rem; }
  .page-hero-inner { grid-template-columns: 1fr; grid-template-rows: auto; gap: 2rem; }
  .page-hero-title { grid-column: 1; grid-row: auto; order: 1; }
  .page-hero-aside { grid-column: 1; grid-row: auto; order: 2; position: static; }
  .page-hero-body { grid-column: 1; grid-row: auto; order: 3; }
  .parcours-portrait { max-width: 340px; margin: 0 auto 2rem; }
}
@media (max-width: 480px) {
  .page-hero { padding: 5rem 1rem 2rem; }
  .parcours-ctas { flex-direction: column; }
  .parcours-ctas a { justify-content: center; }
}

@media (max-width: 480px) { .cta-section .ctas { flex-direction: column; align-items: center; } }

/* ══ FIN ══*/
