/* ── Sections générales ───────────────────────────────────────── */
section { padding: 7rem 0; }

.section-label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-ghost-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 700;
  color: rgba(201, 168, 76, 0.05);
  line-height: 1;
  position: absolute;
  top: -1rem;
  left: -0.5rem;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* ── Fond alterné ─────────────────────────────────────────────── */
.bg-accent {
  background: var(--black-soft);
  border-top: 1px solid rgba(201,168,76,0.08);
  border-bottom: 1px solid rgba(201,168,76,0.08);
}

/* ── Section CTA ──────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--black-soft) 0%, var(--black) 100%);
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}

/* ── Héros pages secondaires ──────────────────────────────────── */
.page-hero {
  position: relative;
  min-height: 58vh;
  display: flex;
  align-items: flex-end;
  padding-top: 135px;
  padding-bottom: 5rem;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 40%, transparent 100%);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background: url('../assets/images/c0c4e7b0-8b70-4f61-82e0-64f220610027.jpg') center/cover no-repeat;
  opacity: 0.09;
}
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg, var(--black) 45%, rgba(17,17,17,0.75) 100%);
}

.page-hero-ghost {
  position: absolute;
  bottom: -0.12em;
  right: -0.04em;
  font-family: 'Playfair Display', serif;
  font-size: clamp(7rem, 26vw, 24rem);
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201, 168, 76, 0.07);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  line-height: 1;
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.page-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  margin-top: 0;
}

.page-hero-desc {
  max-width: 520px;
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.8;
  margin: 0;
}

/* ── Article pleine page ──────────────────────────────────────── */
.article-hero {
  position: relative;
  height: 55vh;
  min-height: 400px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.article-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.article-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.96) 0%, rgba(10,10,10,0.3) 60%);
}
.article-hero-content {
  position: relative;
  z-index: 2;
  padding: 3rem 0;
}
.article-body {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(245,245,245,0.85);
  max-width: 740px;
}
.article-body p { margin-bottom: 1.5rem; }
.article-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 500;
  color: var(--white);
  margin: 2.5rem 0 1rem;
}
.article-body blockquote {
  border-left: 2px solid var(--gold);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--muted);
}

/* ── Footer ───────────────────────────────────────────────────── */
#footer {
  background: var(--black-soft);
  border-top: 1px solid rgba(201,168,76,0.2);
  padding: 4.5rem 0 2rem;
}
.footer-logo img { height: 42px; margin-bottom: 1rem; }
.footer-desc { font-size: 0.83rem; color: var(--muted); max-width: 280px; line-height: 1.8; }
.footer-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  display: block;
}
.footer-link {
  display: block;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.85rem;
  margin-bottom: 0.55rem;
  transition: color 0.3s;
  font-weight: 300;
}
.footer-link:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(245,245,245,0.07);
  margin-top: 3rem;
  padding-top: 1.5rem;
  font-size: 0.78rem;
  color: var(--muted);
}
