/* ============================================================
   Clone « precision » — recodé from scratch
   Charte : fond craie pointillé, encre noire, or électrode,
   pilules arrondies, sans 350 / serif italique / mono espacé.
   ============================================================ */

:root {
  --pn-bg: #edf0ee;          /* craie froide */
  --pn-ink: #0d0d1f;         /* encre Forepont */
  --pn-paper: #ffffff;
  --pn-muted: #63676c;
  --pn-navy: #2b2a6e;        /* navy Forepont */
  --pn-gold: #16e0a0;        /* mint Forepont (ex-or électrode) */
  --pn-gold-soft: #7ff0c9;   /* mint clair */
  --pn-teal: #0e9d94;
  --pn-radius: 24px;
  --pn-sans: "Schibsted Grotesk", -apple-system, sans-serif;
  --pn-serif: "Instrument Serif", Georgia, serif;
  --pn-mono: "IBM Plex Mono", ui-monospace, monospace;
  --pn-header-h: 72px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

.pn-page {
  font-family: var(--pn-sans);
  font-weight: 300;
  background: var(--pn-bg);
  color: var(--pn-ink);
  font-size: 16px;
  line-height: 1.4;
  overflow-x: clip;
}

/* Neutralisation Divi : le thème force h1–h6 #333 et body #666.
   :where() garde une spécificité nulle pour ne pas écraser les composants. */
.pn-page :where(h1, h2, h3, h4, p, li, blockquote) { color: inherit; }
.pn-page :where(ul) { list-style: none; }
.pn-page :where(a) { text-decoration: none; color: inherit; }
.pn-page img, .pn-page canvas, .pn-page video { max-width: 100%; display: block; }

/* Fond pointillé façon papier millimétré */
.pn-dotted {
  background-image: radial-gradient(rgba(13, 13, 31, 0.10) 1px, transparent 1.4px);
  background-size: 22px 22px;
}

/* ---------- utilitaires typographiques ---------- */
.pn-mono {
  font-family: var(--pn-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
}
.pn-mono--light { color: rgba(255, 255, 255, 0.85); }

.pn-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
  color: var(--pn-ink);
}
.pn-eyebrow__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--pn-teal);
  flex: none;
}
.pn-eyebrow__dot--light { background: rgba(255, 255, 255, 0.6); }

/* Grand « statement » central : 44px graisse 350 sur le site source */
.pn-statement__text {
  font-size: clamp(30px, 3.6vw, 46px);
  font-weight: 350;
  line-height: 1.18;
  letter-spacing: -0.01em;
  max-width: 24ch;
  margin: 0 auto;
  text-align: center;
  text-wrap: balance;
}
.pn-statement__text--light { color: #fff; }

/* Ligne « timeline / cycle » en mono (Keyboard → … → Brain AI) */
.pn-page .pn-timeline {
  margin: 30px auto 0;
  max-width: 90vw;
  color: var(--pn-muted);
  letter-spacing: 0.14em;
  line-height: 1.9;
}
.pn-page .pn-timeline.pn-mono--light { color: rgba(255, 255, 255, 0.75); }

/* Paragraphe d'accompagnement sous un statement */
.pn-page .pn-outro {
  max-width: 62ch;
  margin: 26px auto 0;
  color: var(--pn-muted);
  font-size: 17px;
  line-height: 1.55;
}

/* Révélation au scroll */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-reveal].is-in { opacity: 1; transform: none; }

/* ---------- boutons pilule ---------- */
.pn-page .pn-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 40px;
  border-radius: 999px;
  font-family: var(--pn-sans);
  font-size: 14px;
  font-weight: 400;
  border: 0;
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), background 0.35s, color 0.35s;
}
.pn-page .pn-btn:hover { transform: scale(1.04); }
.pn-page .pn-btn--dark { background: var(--pn-navy); color: #fff; }
.pn-page .pn-btn--dark:hover { background: #3a3987; }
.pn-page .pn-btn--light { background: #fff; color: var(--pn-ink); }

/* ============================================================
   EN-TÊTE PILULE
   ============================================================ */
.pn-header {
  position: fixed;
  inset: 14px 14px auto;
  z-index: 100;
}
.pn-header__inner {
  max-width: 1560px;
  margin: 0 auto;
  height: var(--pn-header-h);
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 0 14px 0 28px;
  border-radius: 999px;
  background: rgba(236, 240, 238, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset, 0 10px 30px rgba(10, 10, 10, 0.06);
  transition: box-shadow 0.4s;
}
.pn-header.is-scrolled .pn-header__inner { box-shadow: 0 10px 34px rgba(10, 10, 10, 0.14); }

.pn-logo { display: flex; align-items: center; }
.pn-logo__img { height: 38px; width: auto; }
@media (max-width: 768px) {
  .pn-logo__img { height: 30px; }
}

.pn-nav {
  display: flex;
  gap: 40px;
  margin: 0 auto;
  font-size: 15px;
  font-weight: 400;
}
.pn-nav a { position: relative; padding: 6px 0; }
.pn-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 1px;
  background: var(--pn-ink);
  transition: right 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.pn-nav a:hover::after { right: 0; }

.pn-header__cta { flex: none; }

.pn-burger { display: none; }

.pn-mobilemenu {
  display: none;
  position: fixed;
  inset: 100px 14px auto;
  z-index: 99;
  flex-direction: column;
  gap: 18px;
  padding: 28px;
  border-radius: var(--pn-radius);
  background: rgba(238, 237, 233, 0.96);
  backdrop-filter: blur(14px);
  font-size: 18px;
}
.pn-mobilemenu.is-open { display: flex; }

/* ============================================================
   1. HÉRO
   ============================================================ */
.pn-hero {
  position: relative;
  height: 100svh;
  min-height: 620px;
  display: grid;
  place-items: center;
  overflow: clip;
  background: #97a09c;
}
.pn-hero__canvas, .pn-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pn-hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,13,31,0.25), rgba(13,13,31,0.05) 40%, rgba(13,13,31,0.25));
}
.pn-hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  padding: 0 20px;
}
.pn-hero .pn-eyebrow { margin-bottom: 24px; color: #fff; }
.pn-hero .pn-eyebrow .pn-eyebrow__dot { background: var(--pn-gold); }
.pn-hero__title {
  color: #fff;
  font-size: clamp(34px, 5.4vw, 78px);
  font-weight: 350;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-align: center;
  max-width: 16ch;
  text-wrap: balance;
}
.pn-page .pn-hero__intro {
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.6;
  max-width: 56ch;
  margin-top: 26px;
  text-align: center;
  text-wrap: balance;
}
.pn-hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 36px;
}
.pn-page .pn-btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.pn-page .pn-btn--ghost:hover { background: #fff; color: var(--pn-ink); }
/* mots révélés un à un (spans injectés par JS) */
.pn-hero__title .w {
  display: inline-block;
  overflow: clip;
  vertical-align: bottom;
}
.pn-hero__title .w > span {
  display: inline-block;
  transform: translateY(110%);
  animation: pnWordUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes pnWordUp { to { transform: none; } }

.pn-hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.9);
  animation: pnPulse 2.4s ease-in-out infinite;
}
@keyframes pnPulse { 50% { opacity: 0.45; } }

/* ============================================================
   2. SECTION ÉPINGLÉE « STRATE 7 »
   ============================================================ */
.pn-pin { height: 340vh; position: relative; background: #85908b; }
.pn-pin__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: clip;
  display: grid;
  place-items: center;
}
.pn-pin__canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.pn-pin__veil { position: absolute; inset: 0; background: rgba(38, 48, 45, 0.28); }
.pn-pin__phase {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  text-align: center;
  padding: 0 20px;
  will-change: opacity, transform;
}
.pn-pin__name {
  color: #fff;
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 350;
  letter-spacing: -0.01em;
  margin-top: 14px;
}
.pn-pin__claim {
  color: var(--pn-gold-soft);
  font-size: clamp(30px, 3.8vw, 52px);
  font-weight: 350;
  line-height: 1.15;
  max-width: 22ch;
  text-wrap: balance;
}
.pn-page .pn-pin__claim--white { color: #fff; }
.pn-page .pn-pin__sub {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.55;
  max-width: 52ch;
  margin: 26px auto 0;
  text-wrap: balance;
}

/* ============================================================
   QUATRE DIFFÉRENCIATEURS
   ============================================================ */
.pn-diff { padding: 120px 24px 0; }
.pn-diff__grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.pn-diff__card {
  background: var(--pn-paper);
  border-radius: var(--pn-radius);
  padding: 30px 30px 34px;
  text-align: left;
}
.pn-diff__card .pn-mono { color: var(--pn-teal); }
.pn-diff__card h3 {
  margin-top: 34px;
  font-size: clamp(19px, 1.7vw, 24px);
  font-weight: 400;
  letter-spacing: -0.01em;
}
@media (max-width: 981px) {
  .pn-diff__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .pn-diff__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   3. STATEMENTS + MÉDIAS
   ============================================================ */
.pn-statement { padding: 140px 24px 90px; text-align: center; }

.pn-media {
  position: relative;
  border-radius: var(--pn-radius);
  overflow: clip;
  background: #dddbd5;
}
.pn-media canvas { width: 100%; height: 100%; }
.pn-media--wide {
  max-width: 1400px;
  margin: 70px auto 0;
  aspect-ratio: 16 / 8.5;
}
/* Légende du média large : panneau verre dépoli, texte à l'échelle du bloc.
   Spécificité doublée : la règle de base .pn-media figcaption est déclarée après. */
.pn-media.pn-media--wide figcaption {
  left: clamp(18px, 3vw, 44px);
  right: auto;
  bottom: clamp(18px, 3vw, 44px);
  max-width: min(30ch, 68%);
  text-align: left;
  padding: clamp(22px, 2.6vw, 36px) clamp(24px, 2.8vw, 40px);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  box-shadow: 0 14px 40px rgba(13, 13, 31, 0.10), 0 1px 0 rgba(255, 255, 255, 0.8) inset;
  font-size: clamp(19px, 2vw, 28px);
  font-weight: 350;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.pn-media.pn-media--wide figcaption strong {
  display: block;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(13, 13, 31, 0.12);
  font-size: 0.72em;
  font-weight: 500;
  color: var(--pn-navy);
}
@media (max-width: 768px) {
  .pn-media--wide { aspect-ratio: 3 / 4; }
  .pn-media.pn-media--wide figcaption { max-width: none; right: 18px; }
}
.pn-media--tall { aspect-ratio: 3 / 4.4; }
.pn-media figcaption {
  position: absolute;
  left: 24px; right: 24px; bottom: 20px;
  font-size: 17px;
  font-weight: 400;
  color: var(--pn-ink);
}
.pn-media--dark figcaption { color: #fff; }

/* ============================================================
   4. TÉMOIGNAGES
   ============================================================ */
.pn-people { padding: 140px 0 110px; text-align: center; }
.pn-people > .pn-btn { margin-top: 34px; }

.pn-slider { margin-top: 80px; }
.pn-slider__viewport { overflow: clip; }
.pn-slider__track {
  display: flex;
  gap: 24px;
  padding: 0 max(24px, calc((100vw - 1400px) / 2));
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.pn-card {
  flex: none;
  width: min(720px, 80vw);
  aspect-ratio: 16 / 9;
  border-radius: var(--pn-radius);
  display: grid;
  place-content: end center;
  gap: 20px;
  padding: 40px clamp(28px, 4.5vw, 64px) 32px;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: clip;
}
.pn-card::after {  /* voile bas pour la lisibilité */
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,13,31,0) 30%, rgba(13,13,31,0.55));
}
.pn-card > * { position: relative; z-index: 1; }

/* Teintes de remplacement (remplacer par des photos : background-image) */
.pn-card--t1 { background: linear-gradient(140deg, #55548f, #2b2a6e); }
.pn-card--t2 { background: linear-gradient(140deg, #3f9e94, #0e6b64); }
.pn-card--t3 { background: linear-gradient(140deg, #8b93b0, #4c5378); }
.pn-card--t4 { background: linear-gradient(140deg, #57b89d, #1e7a62); }
.pn-card--t5 { background: linear-gradient(140deg, #6f7fa8, #3a4670); }
.pn-card--t6 { background: linear-gradient(140deg, #4e8d95, #23555c); }

.pn-card__quote {
  font-family: var(--pn-serif);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 400;
  line-height: 1.14;
  text-wrap: balance;
}
.pn-card__quote em { font-style: italic; }
.pn-card__meta { display: grid; gap: 4px; font-size: 14px; }
.pn-card__meta span { opacity: 0.85; }
.pn-card__meta strong { font-weight: 500; }

.pn-slider__ui {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 34px auto 0;
  padding: 0 24px;
}
.pn-slider__count { letter-spacing: 0.2em; }
.pn-slider__arrows { display: flex; gap: 12px; }
.pn-arrow {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1.5px solid rgba(43, 42, 110, 0.4);
  background: #fff;
  color: var(--pn-navy);
  font-size: 20px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, transform 0.3s;
}
.pn-arrow:hover { background: var(--pn-navy); color: #fff; transform: scale(1.06); }
.pn-arrow:disabled { opacity: 0.35; pointer-events: none; }

/* ============================================================
   5. SECTION SOMBRE
   ============================================================ */
.pn-dark {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: clip;
  background: #0d0d1f;
  padding: 120px 24px;
}
.pn-dark__canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.pn-dark__veil { position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 60%, rgba(13,13,31,0) 30%, rgba(13,13,31,0.65)); }
.pn-dark__content { position: relative; z-index: 2; text-align: center; display: grid; justify-items: center; }
.pn-page .pn-dark__outro {
  color: rgba(255, 255, 255, 0.85);
  font-size: 17px;
  line-height: 1.55;
  max-width: 52ch;
  margin-top: 24px;
}
.pn-dark .pn-btn { margin-top: 36px; }

/* ============================================================
   6. MARQUEE PARTENAIRES
   ============================================================ */
.pn-partners { padding: 110px 0; background: var(--pn-bg); text-align: center; overflow: clip; }
.pn-marquee { margin-top: 46px; mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.pn-marquee__row {
  display: flex;
  gap: 72px;
  width: max-content;
  animation: pnMarquee 36s linear infinite;
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 400;
  white-space: nowrap;
  align-items: center;
}
.pn-marquee__row li { display: flex; align-items: center; gap: 72px; }
.pn-marquee__row li::after { content: "·"; color: var(--pn-teal); font-size: 40px; }
.pn-marquee:hover .pn-marquee__row { animation-play-state: paused; }
@keyframes pnMarquee { to { transform: translateX(-50%); } }

/* ============================================================
   CARTE INTERACTIVE — PRÉSENCE MONDIALE
   ============================================================ */
.pn-presence { padding: 140px 24px; text-align: center; }
.pn-presence > .pn-btn { margin-top: 44px; }

.pn-map { max-width: 920px; margin: 56px auto 0; }
.pn-map__frame {
  position: relative;
  aspect-ratio: 2.35 / 1;
  background: var(--pn-paper);
  border-radius: var(--pn-radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(13, 13, 31, 0.07);
}
.pn-map__frame canvas { position: absolute; inset: 0; width: 100%; height: 100%; }

/* Marqueurs de villes */
.pn-page .pn-map__marker {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 28px; height: 28px;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  z-index: 2;
}
.pn-map__marker::before {              /* point */
  content: "";
  position: absolute;
  inset: 50%;
  width: 10px; height: 10px;
  margin: -5px 0 0 -5px;
  border-radius: 50%;
  background: var(--pn-teal);
  transition: background 0.3s, transform 0.3s;
}
.pn-map__marker::after {               /* onde */
  content: "";
  position: absolute;
  inset: 50%;
  width: 10px; height: 10px;
  margin: -5px 0 0 -5px;
  border-radius: 50%;
  border: 1px solid var(--pn-teal);
  animation: pnPing 2.6s ease-out infinite;
}
@keyframes pnPing {
  0% { transform: scale(1); opacity: 0.9; }
  100% { transform: scale(3.4); opacity: 0; }
}
.pn-map__marker.is-active::before { background: var(--pn-navy); transform: scale(1.35); }
.pn-map__marker.is-active::after { border-color: var(--pn-navy); }

.pn-map__marker span {                 /* étiquette */
  position: absolute;
  white-space: nowrap;
  font-family: var(--pn-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pn-ink);
  opacity: 0.75;
  transition: opacity 0.3s;
}
.pn-map__marker.is-active span { opacity: 1; font-weight: 500; }
.pn-map__marker--lbl-r span { left: 22px; top: 50%; transform: translateY(-50%); }
.pn-map__marker--lbl-l span { right: 22px; top: 50%; transform: translateY(-50%); }
.pn-map__marker--lbl-tl span { right: 16px; bottom: 16px; }

/* Puces de sélection (au-dessus de la carte) */
.pn-map__chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin: 22px 0 34px; }
.pn-page .pn-map__chip {
  min-height: 38px;
  padding: 8px 20px;
  border-radius: 999px;
  border: 1px solid rgba(13, 13, 31, 0.18);
  background: transparent;
  font-family: var(--pn-sans);
  font-size: 14px;
  font-weight: 400;
  color: var(--pn-ink);
  cursor: pointer;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.pn-page .pn-map__chip:hover { border-color: var(--pn-navy); }
.pn-page .pn-map__chip.is-active { background: var(--pn-navy); border-color: var(--pn-navy); color: #fff; }
.pn-map__chip small { font-size: 12px; opacity: 0.68; font-weight: 400; }

/* Fiche ville (au-dessus des puces) */
.pn-map__card { max-width: 560px; margin: 0 auto; min-height: 96px; }
.pn-map__card .pn-mono { color: var(--pn-teal); }
.pn-map__card h3 { font-size: clamp(22px, 2.2vw, 30px); font-weight: 400; margin-top: 8px; }
.pn-page .pn-map__desc { color: var(--pn-muted); font-size: 17px; margin-top: 6px; }

@media (max-width: 768px) {
  .pn-map__marker span { display: none; }
  .pn-map__frame { border-radius: 16px; }
}

/* ============================================================
   7. CHIFFRES CLÉS
   ============================================================ */
.pn-impact { padding: 140px 24px; text-align: center; }
.pn-impact > .pn-btn { margin-top: 34px; }
.pn-impact__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 26px;
  max-width: 1400px;
  margin: 80px auto 0;
  text-align: left;
}
.pn-impact__col { display: grid; gap: 26px; align-content: start; }
.pn-stat {
  background: var(--pn-paper);
  border-radius: var(--pn-radius);
  padding: 34px 34px 30px;
}
.pn-stat__num {
  font-size: clamp(56px, 5.4vw, 84px);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1;
}
.pn-page .pn-stat__num--sm { font-size: clamp(38px, 3.4vw, 54px); line-height: 1.15; }
.pn-page .pn-stat__label { font-size: 17px; color: var(--pn-muted); max-width: 30ch; margin-top: 44px; }
.pn-page .pn-stat__note { font-size: 12.5px; color: var(--pn-muted); opacity: 0.85; margin-top: 10px; }
.pn-media--dark { background: #12122a; }

/* ============================================================
   8. ACTUALITÉS
   ============================================================ */
.pn-news { padding: 130px 24px 150px; }
.pn-news__title {
  font-size: clamp(30px, 3vw, 40px);
  font-weight: 350;
  max-width: 1400px;
  margin: 0 auto 50px;
}
.pn-news__grid {
  max-width: 1400px;
  margin: 0 auto;
  columns: 2;
  column-gap: 60px;
}
.pn-news__item {
  break-inside: avoid;
  padding: 30px 0 34px;
  border-bottom: 1px solid rgba(13, 13, 31, 0.14);
  display: grid;
  gap: 16px;
}
.pn-news__source { color: var(--pn-muted); }
.pn-news__item h3 {
  font-size: clamp(21px, 2vw, 27px);
  font-weight: 400;
  line-height: 1.25;
}
.pn-news__item h3 a { transition: opacity 0.3s; }
.pn-news__item h3 a:hover { opacity: 0.55; }
.pn-news__more { font-size: 15px; font-weight: 400; }
.pn-news__more span { display: inline-block; transition: transform 0.3s; }
.pn-news__more:hover span { transform: translate(3px, -3px); }
.pn-page .pn-news__note { font-size: 15px; color: var(--pn-muted); }
.pn-news > .pn-btn { display: inline-flex; margin: 60px auto 0; }
.pn-news { text-align: left; }
.pn-news { display: block; }

/* ============================================================
   9. PIED DE PAGE
   ============================================================ */
.pn-footer {
  background: var(--pn-ink);
  color: #fff;
  padding: 110px 24px 40px;
}
.pn-footer__grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 70px;
}
.pn-footer__news h2 {
  font-size: clamp(28px, 2.6vw, 38px);
  font-weight: 350;
  margin-bottom: 36px;
}
.pn-form { display: grid; gap: 14px; max-width: 420px; }
.pn-form__field select,
.pn-form__field input {
  width: 100%;
  height: 52px;
  padding: 0 18px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: transparent;
  color: #fff;
  font-family: var(--pn-sans);
  font-size: 15px;
}
.pn-form__field select option { color: #000; }
.pn-form__field input::placeholder { color: rgba(255, 255, 255, 0.55); }
.pn-form .pn-btn { justify-self: start; margin-top: 8px; }

.pn-footer__links {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 40px;
  align-content: start;
  justify-content: end;
}
.pn-footer__links ul { display: grid; gap: 14px; font-size: 15px; }
.pn-footer__links a { opacity: 0.9; transition: opacity 0.3s; }
.pn-footer__links a:hover { opacity: 0.5; }

.pn-footer__legal {
  max-width: 1400px;
  margin: 90px auto 0;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 13px;
  opacity: 0.65;
}

/* ============================================================
   MODALE CONTACT
   ============================================================ */
.pn-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 20px;
}
.pn-modal[hidden] { display: none; }
.pn-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13, 13, 31, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.pn-modal__panel {
  position: relative;
  width: min(540px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  background: var(--pn-paper);
  border-radius: var(--pn-radius);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: 0 30px 90px rgba(13, 13, 31, 0.35);
  animation: pnModalIn 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes pnModalIn {
  from { opacity: 0; transform: translateY(26px) scale(0.98); }
}
.pn-page .pn-modal__close {
  position: absolute;
  top: 16px; right: 16px;
  width: 40px; height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(13, 13, 31, 0.06);
  color: var(--pn-ink);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}
.pn-page .pn-modal__close:hover { background: var(--pn-navy); color: #fff; }
.pn-modal .pn-eyebrow { justify-content: flex-start; margin-bottom: 14px; }
.pn-modal h3 {
  font-size: clamp(24px, 2.4vw, 30px);
  font-weight: 350;
  letter-spacing: -0.01em;
  margin-bottom: 26px;
}
.pn-modal__field { display: grid; gap: 8px; margin-bottom: 16px; text-align: left; }
.pn-modal__field label {
  font-family: var(--pn-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pn-muted);
}
.pn-modal__field select,
.pn-modal__field input,
.pn-modal__field textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: 12px;
  border: 1px solid rgba(13, 13, 31, 0.22);
  background: #fff;
  color: var(--pn-ink);
  font-family: var(--pn-sans);
  font-size: 15px;
  resize: vertical;
}
.pn-modal__field select:focus,
.pn-modal__field input:focus,
.pn-modal__field textarea:focus {
  outline: 2px solid var(--pn-teal);
  outline-offset: 1px;
  border-color: transparent;
}
.pn-modal__consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13.5px;
  color: var(--pn-muted);
  margin: 4px 0 22px;
  text-align: left;
  cursor: pointer;
}
.pn-modal__consent input { margin-top: 2px; accent-color: var(--pn-navy); }
.pn-modal__consent a { text-decoration: underline; }
.pn-modal__done { text-align: left; }
.pn-modal__done h3 { margin-bottom: 10px; }
.pn-modal__done p { color: var(--pn-muted); margin-bottom: 26px; }
body.pn-modal-open { overflow: hidden; }

/* ============================================================
   RESPONSIVE (breakpoints Divi : 981 / 768)
   ============================================================ */
@media (max-width: 981px) {
  .pn-nav, .pn-header__cta { display: none; }
  .pn-burger {
    display: grid;
    gap: 6px;
    margin-left: auto;
    padding: 14px;
    background: none;
    border: 0;
    cursor: pointer;
  }
  .pn-burger span { width: 24px; height: 2px; background: var(--pn-ink); transition: transform 0.3s; }
  .pn-burger[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .pn-burger[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }

  .pn-impact__grid { grid-template-columns: 1fr 1fr; }
  .pn-impact__col { grid-column: 1 / -1; grid-template-columns: repeat(3, 1fr); }
  .pn-footer__grid { grid-template-columns: 1fr; }
  .pn-footer__links { justify-content: start; }
}

@media (max-width: 768px) {
  .pn-news__grid { columns: 1; }
  .pn-impact__col { grid-template-columns: 1fr; }
  .pn-impact__grid { grid-template-columns: 1fr; }
  .pn-page .pn-stat__label { margin-top: 22px; }
  .pn-card { aspect-ratio: 4 / 5; }
  .pn-footer__links { grid-template-columns: 1fr 1fr; }
  .pn-footer__legal { flex-direction: column; }
}

/* Accessibilité : réduction des animations */
@media (prefers-reduced-motion: reduce) {
  .pn-hero__title .w > span { animation: none; transform: none; }
  .pn-map__marker::after { animation: none; opacity: 0; }
  [data-reveal] { transition: none; opacity: 1; transform: none; }
  .pn-marquee__row { animation-duration: 200s; }
  html { scroll-behavior: auto; }
}
