/* ============================================================
   RÉALISATIONS — Styles spécifiques
============================================================ */

/* ─── Breadcrumb & eyebrow (hero sombre partagé) ─── */
.real-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.08em;
  margin-bottom: 2rem;
}
.real-breadcrumb a { color: rgba(255,255,255,0.35); text-decoration: none; transition: color 0.2s; }
.real-breadcrumb a:hover { color: var(--gold); }
.real-breadcrumb span:last-child { color: var(--gold-light); }

.real-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.real-eyebrow-dot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulseDot 2.2s ease-in-out infinite;
  flex-shrink: 0;
}

/* ─── HERO ─── */
.real-hero {
  position: relative;
  background: var(--night);
  overflow: hidden;
  padding: 10rem 2rem 5rem;
}

.real-hero-watermark {
  position: absolute;
  bottom: -2rem; right: -1rem;
  font-family: 'Playfair Display', serif;
  font-size: clamp(8rem, 18vw, 16rem);
  font-weight: 900;
  color: rgba(201, 168, 76, 0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.real-hero-inner { max-width: 1200px; margin: 0 auto; }
.real-hero-content { max-width: 820px; margin-bottom: 3.5rem; }

/* ─── Portrait hero réalisations ─── */
.real-hero-portrait { margin: 2rem 0 0; }

.real-hero-portrait-inner {
  position: relative;
  display: inline-block;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid rgba(201,168,76,0.25);
  box-shadow: 0 24px 48px rgba(0,0,0,0.5);
  max-width: 320px;
}

@media (min-width: 900px) {
  .real-hero-portrait {
    position: absolute;
    right: 2rem; top: 9rem;
    margin: 0;
  }
  .real-hero-portrait-inner { max-width: 260px; }
}

@media (min-width: 1100px) {
  .real-hero-portrait { right: 5vw; }
  .real-hero-portrait-inner { max-width: 300px; }
}

.real-hero-portrait-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.5s ease;
}

.real-hero-portrait-inner:hover .real-hero-portrait-img { transform: scale(1.04); }

.real-hero-portrait-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.9) 0%, transparent 100%);
  padding: 2rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.real-hero-portrait-years {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-light);
}

.real-hero-portrait-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.real-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.1;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.25rem;
  margin-top: 1rem;
}
.real-hero-title span { font-weight: 800; color: #fff; display: block; }

.real-hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.9rem, 1.4vw, 1rem);
  line-height: 1.75;
  color: rgba(255,255,255,0.48);
  max-width: 620px;
}

/* KPI bar */
.real-kpi-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
}

.real-kpi {
  display: flex;
  flex-direction: column;
  padding: 0 2.5rem 0 0;
}

.real-kpi-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.real-kpi-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  margin-top: 0.3rem;
  letter-spacing: 0.04em;
}

.real-kpi-sep {
  width: 1px; height: 2.5rem;
  background: rgba(255,255,255,0.1);
  margin-right: 2.5rem;
  flex-shrink: 0;
}

/* ─── DASHBOARD ─── */
.real-dashboard {
  background: var(--offwhite);
  padding: 6rem 2rem;
  border-bottom: 1px solid var(--gray-border);
}

.real-container { max-width: 1100px; margin: 0 auto; }

.real-section-head { margin-bottom: 3rem; }

.real-eyebrow-inline {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.75rem;
}

.real-eyebrow-line { width: 28px; height: 2px; background: var(--gradient-gold); flex-shrink: 0; }

.real-section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 700;
  color: var(--night);
  line-height: 1.2;
}

/* Table */
.real-table-wrap { overflow-x: auto; }

.real-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
}

.real-table th {
  background: var(--night);
  color: rgba(255,255,255,0.7);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1rem 1.25rem;
  text-align: left;
}

.real-table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--gray-border);
  color: var(--charcoal);
  vertical-align: middle;
}

.real-table tr:last-child td { border-bottom: none; }
.real-table tr:nth-child(even) td { background: rgba(244,241,236,0.5); }

.real-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  white-space: nowrap;
}

.real-badge--gold { background: rgba(201,168,76,0.12); color: var(--gold-dark); border: 1px solid rgba(201,168,76,0.3); }
.real-badge--green { background: rgba(26,122,74,0.08); color: #1A7A4A; border: 1px solid rgba(26,122,74,0.2); }

/* ─── SECTIONS ─── */
.real-section { padding: 5rem 2rem; }
.real-section--light { background: var(--alabaster); }
.real-section--offwhite { background: var(--offwhite); }
.real-section--dark { background: var(--night); }

.real-section-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .real-section-grid { grid-template-columns: 140px 1fr; gap: 3rem; }
}

.real-section-aside {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .real-section-aside { flex-direction: column; align-items: flex-start; gap: 0.5rem; padding-top: 0.5rem; }
}

.real-section-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: rgba(201,168,76,0.25);
  line-height: 1;
}

.real-section-num--light { color: rgba(201,168,76,0.35); }

.real-section-tag {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.real-section-tag--light { color: var(--gold); }

.real-section-body p {
  font-family: 'Inter', sans-serif;
  font-size: 0.97rem;
  line-height: 1.85;
  color: var(--charcoal);
  margin-bottom: 1.25rem;
}
.real-section-body p:last-child { margin-bottom: 0; }
.real-section-body p strong { color: var(--night); font-weight: 600; }

.real-title--light { color: rgba(255,255,255,0.92); }

.real-text--light,
.real-section--dark .real-section-body p {
  color: rgba(255,255,255,0.65);
}

.real-text--light strong,
.real-section--dark .real-section-body p strong {
  color: rgba(255,255,255,0.92);
}

/* Checklist */
.real-checklist {
  list-style: none;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.real-checklist li {
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--charcoal);
  padding-left: 1.75rem;
  position: relative;
}

.real-checklist li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.45rem;
  width: 16px; height: 16px;
  background: rgba(201,168,76,0.15);
  border: 1.5px solid var(--gold);
  border-radius: 4px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23A8893A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.real-checklist li strong { color: var(--night); font-weight: 600; }

/* Cards section 2 */
.real-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

@media (min-width: 640px) {
  .real-cards { grid-template-columns: repeat(3, 1fr); }
}

.real-card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-sm);
  padding: 1.5rem 1.25rem;
  box-shadow: var(--shadow-sm);
}

.real-card-icon { font-size: 1.5rem; display: block; margin-bottom: 0.75rem; }

.real-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--night);
  margin-bottom: 0.5rem;
}

.real-card p {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  line-height: 1.65;
  color: var(--graytext);
  margin: 0;
}

/* Blockquote section 3 */
.real-blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-style: italic;
  color: var(--gold-light);
  line-height: 1.75;
  border-left: 3px solid var(--gold);
  padding: 1.25rem 1.75rem;
  background: rgba(255,255,255,0.04);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 1.5rem 0;
}

.real-blockquote cite {
  display: block;
  margin-top: 0.75rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-style: normal;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

/* Dossiers section 4 */
.real-dossier {
  border: 1px solid var(--gray-border);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1.5rem 1.75rem;
  margin-bottom: 1.25rem;
  background: var(--white);
}

.real-dossier:last-child { margin-bottom: 0; }

.real-dossier-header { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 0.75rem; }

.real-dossier-tag {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.real-dossier h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--night);
}

/* Impact grid section 5 */
.real-impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

@media (max-width: 640px) {
  .real-impact-grid { grid-template-columns: 1fr; }
}

.real-impact-item {
  text-align: center;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.real-impact-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 700;
  color: var(--night);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.real-impact-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--graytext);
  line-height: 1.4;
}

/* Press quotes section 6 */
.real-press-quotes { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2rem; }

.real-press-quote {
  font-family: 'Playfair Display', serif;
  font-size: 0.97rem;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.75;
  border-left: 2px solid var(--gold);
  padding: 1rem 1.5rem;
  background: var(--offwhite);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.real-press-quote cite {
  display: block;
  margin-top: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-style: normal;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--graytext);
}

/* Nuance */
.real-nuance {
  background: var(--offwhite);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-sm);
  padding: 1.5rem 1.75rem;
  margin-top: 1.5rem;
}

.real-nuance-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--graytext);
  margin-bottom: 0.75rem !important;
}

/* ============================================================
   RESPONSIVE MOBILE — réalisations
============================================================ */
@media (max-width: 640px) {
  .real-hero { padding: 6rem 1rem 3rem; }

  .real-hero-portrait { margin: 2rem 0 0; }
  .real-hero-portrait-inner {
    max-width: calc(100vw - 2rem);
    display: block;
  }
  .real-hero-portrait-img { height: 240px; }

  .real-kpi-bar { gap: 1.25rem; flex-wrap: wrap; }
  .real-kpi-sep { display: none; }
  .real-kpi { padding: 0; }

  .real-dashboard { padding: 3rem 1rem; }
  .real-container { padding: 0; }
}
