/* SemiosX — feuille de style éditoriale-clinique
   Charte : anthracite #1A1A2E, bordeaux #9f151d, crème #F5F1E8
   Typographie : Fraunces (serif éditorial) + General Sans (sans-serif moderne)
*/

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,600;0,9..144,800;1,9..144,400&display=swap');
@import url('https://api.fontshare.com/v2/css?f[]=general-sans@400,500,600,700&display=swap');

:root {
  --encre: #1A1A2E;
  --bordeaux: #9f151d;
  --creme: #F5F1E8;
  --creme-fonce: #EAE3D2;
  --gris: #8B8478;
  --rouge-vif: #B8323F;
  --serif: 'Fraunces', Georgia, serif;
  --sans: 'General Sans', -apple-system, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 17px;
}

body {
  font-family: var(--sans);
  background: var(--creme);
  color: var(--encre);
  line-height: 1.55;
  font-weight: 400;
  overflow-x: hidden;
}

/* ============================================
   EN-TÊTE
   ============================================ */

header.site-header {
  border-bottom: 1px solid var(--encre);
  padding: 1.8rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #FFFFFF;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo-zone {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
}

.logo-text {
  font-family: var(--serif);
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: -0.02em;
  color: var(--encre);
}

.logo-text .x {
  color: var(--bordeaux);
}

.logo-img {
  height: 120px !important;
  width: auto !important;
  max-width: 600px;
  display: block;
}

.logo-zone a {
  display: block;
  line-height: 0;
}

@media (max-width: 900px) {
  .logo-img {
    height: 90px !important;
    max-width: 400px;
  }
}

.logo-baseline {
  font-family: var(--sans);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gris);
  font-weight: 500;
}

nav.site-nav {
  display: flex;
  gap: 2.5rem;
}

nav.site-nav a {
  font-family: var(--sans);
  text-decoration: none;
  color: var(--encre);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  padding-bottom: 5px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s;
}

nav.site-nav a:hover,
nav.site-nav a.active {
  border-bottom-color: var(--bordeaux);
}

/* ============================================
   HÉRO
   ============================================ */

.hero {
  padding: 6rem 2rem 5rem;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  position: relative;
}

.hero-section-num {
  font-family: var(--sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--bordeaux);
  font-weight: 600;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.hero-section-num::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--bordeaux);
}

.hero h1 {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--encre);
  margin-bottom: 1.5rem;
}

.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--bordeaux);
}

.hero-lead {
  font-family: var(--serif);
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: 400;
  color: var(--encre);
  margin-bottom: 2rem;
  font-style: italic;
}

.hero-baseline {
  font-family: var(--sans);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--encre);
  font-weight: 600;
  padding-top: 1.5rem;
  border-top: 1px solid var(--encre);
}

.hero-baseline span {
  color: var(--bordeaux);
}

.hero-visual {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================
   SECTIONS GÉNÉRIQUES
   ============================================ */

section.bloc {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

section.bloc.encre {
  background: var(--encre);
  color: var(--creme);
  max-width: none;
  margin: 0;
  padding: 5rem 2rem;
}

section.bloc.encre .bloc-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-num {
  font-family: var(--sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--bordeaux);
  font-weight: 600;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.section-num::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--bordeaux);
}

section.bloc.encre .section-num {
  color: #D89BA4;
}

section.bloc.encre .section-num::before {
  background: #D89BA4;
}

h2.section-title {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 2.5rem;
  max-width: 900px;
}

h2.section-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--bordeaux);
}

section.bloc.encre h2.section-title em {
  color: #E89BA4;
}

h3.sub-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
  letter-spacing: -0.01em;
}

p.lead {
  font-family: var(--serif);
  font-size: 1.3rem;
  line-height: 1.45;
  font-style: italic;
  margin-bottom: 2rem;
  max-width: 800px;
}

p {
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 720px;
  margin-bottom: 1.2rem;
}

p strong {
  font-weight: 600;
  color: var(--bordeaux);
}

section.bloc.encre p strong {
  color: #E89BA4;
}

/* ============================================
   MANIFESTE — points anti-sondage
   ============================================ */

.manifeste-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.manifeste-item {
  border-top: 2px solid var(--bordeaux);
  padding-top: 1.2rem;
}

.manifeste-item-num {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 800;
  font-style: italic;
  color: var(--bordeaux);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.manifeste-item h4 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  letter-spacing: -0.01em;
}

.manifeste-item p {
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 0;
}

/* ============================================
   OFFRE
   ============================================ */

.offre-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.offre-carte {
  background: var(--creme);
  border: 1px solid var(--encre);
  padding: 2.2rem 1.8rem;
  position: relative;
}

.offre-carte::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--bordeaux);
}

.offre-tag {
  font-family: var(--sans);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--bordeaux);
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.offre-carte h4 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.offre-carte p {
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 0;
}

/* Encart "Ce que SemiosX n'est pas" sous la grille des trois niveaux */
.offre-nest-pas {
  background: var(--creme-fonce);
  padding: 2.5rem 2.5rem;
  margin-top: 3rem;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.offre-nest-pas h5 {
  font-family: var(--serif);
  font-weight: 700;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--bordeaux);
  margin: 0 0 0.8rem 0;
  letter-spacing: -0.01em;
}

.offre-nest-pas p {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--encre);
  margin: 0;
}

.offre-nest-pas p em {
  font-style: italic;
  font-weight: 600;
  color: var(--bordeaux);
}

/* ============================================
   CITATION ÉDITORIALE
   ============================================ */

.citation-bloc {
  padding: 5rem 2rem;
  background: var(--creme-fonce);
  text-align: center;
}

.citation-bloc blockquote {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.25;
  font-style: italic;
  font-weight: 400;
  max-width: 900px;
  margin: 0 auto;
  letter-spacing: -0.01em;
  color: var(--encre);
}

.citation-bloc blockquote::before {
  content: "« ";
  color: var(--bordeaux);
  font-weight: 800;
}

.citation-bloc blockquote::after {
  content: " »";
  color: var(--bordeaux);
  font-weight: 800;
}

/* ============================================
   PIED DE PAGE / CONTACT
   ============================================ */

footer.site-footer {
  background: var(--encre);
  color: var(--creme);
  padding: 4rem 2rem 2rem;
  border-top: 1px solid #3A3A4E;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}

.footer-inner h5 {
  font-family: var(--sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #D89BA4;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-inner p, .footer-inner a {
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--creme);
  text-decoration: none;
  line-height: 1.7;
  margin-bottom: 0.3rem;
  display: block;
}

.footer-inner a:hover {
  color: #E89BA4;
}

.footer-signature {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-style: italic;
  line-height: 1.3;
  color: var(--creme);
  letter-spacing: -0.01em;
}

.footer-signature span {
  color: #E89BA4;
}

.footer-bas {
  max-width: 1200px;
  margin: 3rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid #3A3A4E;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-family: var(--sans);
  font-size: 0.8rem;
  color: var(--gris);
}

.footer-bas a {
  color: var(--gris);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bas a:hover {
  color: var(--rose-pale);
}

.footer-legal {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

/* ============================================
   PAGE DÉMONSTRATION — cas
   ============================================ */

.cas-header {
  padding: 5rem 2rem 3rem;
  max-width: 1100px;
  margin: 0 auto;
}

.cas-titre {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(2.5rem, 4.5vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}

.cas-soustitre {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--bordeaux);
  margin-bottom: 0;
}

.cas-corps {
  padding: 2rem 2rem 5rem;
  max-width: 800px;
  margin: 0 auto;
}

.cas-corps h3 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.6rem;
  margin: 2.5rem 0 1rem;
  letter-spacing: -0.01em;
  color: var(--encre);
  padding-top: 1.2rem;
  border-top: 1px solid var(--bordeaux);
}

.fiabilite {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  padding: 3px 10px;
  margin-left: 0.5rem;
  vertical-align: middle;
  border-radius: 2px;
}

.fiabilite.solide {
  background: var(--bordeaux);
  color: var(--creme);
}

.fiabilite.indicatif {
  background: var(--creme-fonce);
  color: var(--gris);
  border: 1px solid var(--gris);
}

.cas-data {
  background: var(--creme-fonce);
  padding: 1.5rem 1.8rem;
  margin: 1.5rem 0;
  border-left: 4px solid var(--bordeaux);
  font-family: var(--sans);
  font-size: 0.95rem;
}

.cas-data strong {
  font-family: var(--serif);
  font-weight: 700;
  color: var(--bordeaux);
  font-size: 1.05rem;
}

.cas-doi {
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--gris);
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--encre);
}

.cas-doi a {
  color: var(--bordeaux);
  text-decoration: none;
  border-bottom: 1px dotted var(--bordeaux);
}

/* ============================================
   VISUALISATIONS — viz SVG isométriques
   ============================================ */

.viz-wrap {
  margin: 3rem -2rem;
  padding: 0;
  position: relative;
}

.viz-svg {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 700px) {
  .viz-wrap {
    margin: 2rem -1rem;
  }
}

/* ============================================
   PULL QUOTES — citations en gros dans le corps
   ============================================ */

.pull-quote {
  font-family: var(--serif);
  font-weight: 600;
  font-style: italic;
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--bordeaux);
  margin: 3rem 0 3rem 3rem;
  padding: 1.5rem 0 0 0;
  border-top: 1px solid var(--encre);
  text-align: left;
  max-width: 65% !important;
}

/* ============================================
   ENCART FORBES — hors-texte cerise
   ============================================ */

.encart-forbes {
  background: #FFFFFF;
  border: 1px solid var(--encre);
  margin: 4rem auto;
  max-width: 900px;
  padding: 3.5rem 3rem;
  position: relative;
}

.encart-forbes-inner {
  max-width: 750px;
  margin: 0 auto;
}

.encart-forbes-num {
  font-family: var(--sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--bordeaux);
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.encart-forbes-num::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--bordeaux);
}

.encart-forbes-titre {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--encre);
  margin: 0 0 2.5rem 0;
}

.encart-forbes-titre em {
  font-style: italic;
  font-weight: 400;
  color: var(--bordeaux);
}

.encart-forbes-liste {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.encart-forbes-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(26, 26, 46, 0.12);
}

.encart-forbes-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.encart-forbes-letter {
  font-family: var(--serif);
  font-weight: 800;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--bordeaux);
  flex-shrink: 0;
  width: 50px;
  letter-spacing: -0.02em;
}

.encart-forbes-text {
  font-family: var(--sans);
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--encre);
}

.encart-forbes-text strong {
  color: var(--encre);
  font-weight: 700;
}

@media (max-width: 700px) {
  .encart-forbes {
    padding: 2.5rem 1.5rem;
    margin: 2.5rem 1rem;
  }
  
  .encart-forbes-letter {
    font-size: 2rem;
    width: 40px;
  }
  
  .encart-forbes-item {
    gap: 1rem;
  }
}

/* ============================================
   TIMELINE ALTERNÉE — façon magazine éditorial
   ============================================ */

.timeline-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
  position: relative;
}

/* Axe vertical central */
.timeline-section::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 3rem;
  bottom: 5rem;
  width: 1px;
  background: var(--encre);
  opacity: 0.3;
  transform: translateX(-0.5px);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 1.5rem 3rem;
  box-sizing: border-box;
  margin-bottom: 1rem;
}

.timeline-right {
  margin-left: 50%;
  text-align: left;
}

.timeline-left {
  margin-left: 0;
  text-align: right;
}

/* Pastille sur l'axe */
.timeline-item::before {
  content: "";
  position: absolute;
  top: 2.4rem;
  width: 14px;
  height: 14px;
  background: var(--bordeaux);
  border: 3px solid var(--creme);
  border-radius: 50%;
  z-index: 2;
}

.timeline-right::before {
  left: -7px;
}

.timeline-left::before {
  right: -7px;
}

.timeline-date {
  font-family: var(--serif);
  font-weight: 800;
  font-size: 1.7rem;
  color: var(--bordeaux);
  letter-spacing: -0.02em;
  margin-bottom: 0.8rem;
  line-height: 1;
}

.timeline-card {
  background: #FFFFFF;
  padding: 1.8rem 2rem;
  border: 1px solid rgba(26, 26, 46, 0.12);
  position: relative;
  text-align: left;
}

.timeline-card-num {
  font-family: var(--sans);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gris);
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.timeline-card h3 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--encre);
  margin: 0 0 1rem 0;
}

.timeline-card p {
  font-family: var(--sans);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--encre);
  margin: 0;
  max-width: none;
}

.timeline-card p strong {
  color: var(--bordeaux);
  font-weight: 600;
}

/* ============================================
   PALIER PLEINE LARGEUR — périodes éditoriales
   ============================================ */

.timeline-palier {
  width: 100%;
  margin: 3rem 0;
  padding: 4rem 0;
  background: var(--creme-fonce);
  position: relative;
}

/* Le palier coupe l'axe central : on masque l'axe à son niveau */
.timeline-palier::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--creme-fonce);
  transform: translateX(-0.5px);
  z-index: 1;
}

.palier-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 3rem;
  position: relative;
  z-index: 2;
}

.palier-num {
  font-family: var(--sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--bordeaux);
  font-weight: 600;
  margin-bottom: 1rem;
}

.palier-titre {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--encre);
  margin: 0 0 1.5rem 0;
}

.palier-titre em {
  font-style: italic;
  font-weight: 400;
  color: var(--bordeaux);
  font-size: 0.85em;
  display: block;
  margin-top: 0.4rem;
}

.palier-chapo {
  font-family: var(--serif);
  font-weight: 500;
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--encre);
  margin: 0 0 2.5rem 0;
  padding-left: 2rem;
  border-left: 3px solid var(--bordeaux);
  max-width: 750px;
}

.palier-corps {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--encre);
}

.palier-corps p {
  margin: 0 0 1.2rem 0;
  max-width: none;
}

.palier-corps p strong {
  color: var(--bordeaux);
  font-weight: 600;
}

.palier-liste {
  list-style: none;
  padding: 0;
  margin: 0;
}

.palier-liste li {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--encre);
  padding: 0.8rem 0 0.8rem 2rem;
  position: relative;
  border-bottom: 1px solid rgba(26, 26, 46, 0.1);
}

.palier-liste li:last-child {
  border-bottom: none;
}

.palier-liste li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.45rem;
  width: 14px;
  height: 1px;
  background: var(--bordeaux);
}

.palier-liste li strong {
  color: var(--bordeaux);
  font-weight: 600;
  font-family: var(--serif);
  font-size: 1.05rem;
}

.palier-liste li em {
  font-style: italic;
  color: var(--gris);
}

/* ============================================
   RESPONSIVE — timeline en mobile
   ============================================ */

@media (max-width: 900px) {
  .timeline-section::before {
    left: 24px;
    transform: none;
  }
  
  .timeline-item {
    width: 100%;
    margin-left: 0 !important;
    padding: 1rem 1rem 1rem 3.5rem;
    text-align: left !important;
  }
  
  .timeline-item::before {
    left: 17px !important;
    right: auto !important;
  }
  
  .palier-inner {
    padding: 0 1.5rem;
  }
  
  .palier-chapo {
    padding-left: 1.2rem;
    font-size: 1.05rem;
  }
}

/* ============================================
   PAGE CONTACT — Deux colonnes premium
   ============================================ */

.contact-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 2rem 4rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* Colonne gauche */
.contact-col-gauche {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.contact-block h3 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--encre);
  margin: 0 0 1.5rem 0;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--encre);
  letter-spacing: -0.01em;
}

.contact-item {
  margin-bottom: 1.5rem;
}

.contact-item-label {
  font-family: var(--sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gris);
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.contact-item-value {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--encre);
  font-weight: 600;
  text-decoration: none;
  display: block;
}

a.contact-item-value:hover {
  color: var(--bordeaux);
}

.contact-item-note {
  font-family: var(--sans);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--gris);
  margin-top: 0.3rem;
}

.contact-liens {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.contact-liens a {
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--encre);
  text-decoration: none;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(26, 26, 46, 0.15);
  transition: color 0.2s, border-color 0.2s;
}

.contact-liens a:hover {
  color: var(--bordeaux);
  border-bottom-color: var(--bordeaux);
}

.expertise-item {
  margin-bottom: 1.5rem;
  padding-left: 1rem;
  border-left: 2px solid var(--bordeaux);
}

.expertise-item h4 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--encre);
  margin: 0 0 0.4rem 0;
  letter-spacing: -0.005em;
}

.expertise-item p {
  font-family: var(--sans);
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--encre);
  margin: 0;
}

/* Colonne droite — portrait + CTA */
.contact-col-droite {
  position: sticky;
  top: 2rem;
}

.contact-portrait {
  background: var(--encre);
  padding: 0.6rem;
  margin-bottom: 2rem;
}

.contact-portrait img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 3/4;
  object-fit: cover;
  background: #2a2a2a;
}

.contact-portrait-caption {
  font-family: var(--sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--creme);
  text-align: center;
  margin-top: 0.8rem;
  font-weight: 600;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(245, 241, 232, 0.3);
}

.contact-cta {
  background: var(--creme-fonce);
  padding: 2rem;
}

.contact-cta h4 {
  font-family: var(--serif);
  font-weight: 700;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--bordeaux);
  margin: 0 0 1rem 0;
}

.contact-cta p {
  font-family: var(--sans);
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--encre);
  margin: 0 0 1.3rem 0;
}

.contact-cta-button {
  display: block;
  background: var(--bordeaux);
  color: #FFFFFF;
  padding: 1rem 1.5rem;
  text-align: center;
  text-decoration: none;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  transition: background 0.2s;
}

.contact-cta-button:hover {
  background: var(--encre);
}

.contact-cta-tel {
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--gris);
  text-align: center;
  margin-top: 0.8rem;
}

.contact-cta-tel a {
  color: var(--encre);
  text-decoration: none;
  font-weight: 600;
}

.contact-cta-tel a:hover {
  color: var(--bordeaux);
}

/* Responsive : passage en une colonne */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .contact-col-droite {
    position: static;
    order: -1;
  }
  .contact-portrait img {
    max-width: 280px;
    margin: 0 auto;
  }
}

/* ============================================
   ENCART HORS-TEXTE — la chute éditoriale
   ============================================ */

.encart-hors-texte {
  background: var(--encre);
  color: var(--creme);
  padding: 5rem 2rem;
  margin: 4rem 0 0 0;
  position: relative;
}

.encart-inner {
  max-width: 900px;
  margin: 0 auto;
}

.encart-section-num {
  font-family: var(--sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #E89BA4;
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.encart-section-num::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 1px;
  background: #E89BA4;
}

.encart-titre {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(2.2rem, 4.5vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--creme);
  margin-bottom: 2rem;
  max-width: 800px;
}

.encart-chapeau {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--creme);
  margin-bottom: 3rem;
  max-width: 800px;
  font-style: normal;
}

.encart-chapeau em {
  font-style: italic;
  font-weight: 400;
  color: #E89BA4;
}

.encart-colonnes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid #3A3A4E;
}

.encart-col p {
  font-family: var(--sans);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--creme);
  margin-bottom: 0;
  max-width: none;
}

.encart-col p strong {
  font-weight: 600;
  color: #E89BA4;
}

.encart-chute {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--creme);
  text-align: right;
  margin-bottom: 0;
  max-width: none;
  padding-top: 2rem;
  border-top: 1px solid #3A3A4E;
}

.encart-chute em {
  font-style: italic;
  font-weight: 400;
  color: #E89BA4;
}

@media (max-width: 700px) {
  .encart-hors-texte {
    padding: 3rem 1.5rem;
  }
  
  .encart-colonnes {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .encart-chute {
    text-align: left;
  }
}

.cas-corps-suite {
  padding-top: 0;
}

/* ============================================
   PAGE MANIFESTE — texte long
   ============================================ */

.manifeste-header {
  padding: 6rem 2rem 3rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.manifeste-titre {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(2.8rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.manifeste-titre em {
  font-style: italic;
  color: var(--bordeaux);
  font-weight: 400;
}

.manifeste-corps {
  padding: 2rem 2rem 5rem;
  max-width: 720px;
  margin: 0 auto;
}

.manifeste-corps p {
  margin-bottom: 1.4rem;
  font-size: 1.1rem;
  line-height: 1.7;
}

.manifeste-corps p:first-of-type::first-letter {
  font-family: var(--serif);
  font-size: 4.5rem;
  font-weight: 800;
  float: left;
  line-height: 0.85;
  margin: 0.3rem 0.6rem 0 0;
  color: var(--bordeaux);
}

.manifeste-corps h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.8rem;
  margin: 3rem 0 1.2rem;
  letter-spacing: -0.015em;
  color: var(--encre);
}

.manifeste-corps h2 em {
  font-style: italic;
  color: var(--bordeaux);
  font-weight: 400;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 4rem 1.5rem 3rem;
  }
  
  nav.site-nav {
    gap: 1.3rem;
  }
  
  nav.site-nav a {
    font-size: 0.85rem;
  }
  
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  header.site-header {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }
  
  .logo-baseline {
    display: none;
  }
}

/* ============================================
   SMARTPHONE — verrou strict en dessous de 600px
   ============================================ */
@media (max-width: 600px) {
  html, body {
    overflow-x: hidden;
  }
  
  header.site-header {
    padding: 0.8rem 1rem;
  }
  
  .logo-img {
    height: 70px !important;
    max-width: 100%;
  }
  
  nav.site-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.7rem 1.1rem;
    width: 100%;
    padding: 0 0.5rem;
  }
  
  nav.site-nav a {
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    padding-bottom: 3px;
  }
}
