/* =====================================================================
   CLARIS' — thème "La Sphère respirante"
   Palette : crème chaud + duo corail (Romain, mouvement) / sauge (Nicolas, calme)
   Typo    : Raleway uniquement, contraste extrême des graisses (100 / 800)
   Signature : le portrait et les 5 sites sont traités comme des sphères
               qui flottent et respirent — écho littéral à "notre sphère"
   ===================================================================== */

:root{
  --paper:#FDFCFB;
  --paper-2:#F8F6F2;
  --ink:#211F1B;
  --stone:#948C7E;
  --coral:#FF7A5C;
  --coral-soft:#FFECE5;
  --sage:#6FA484;
  --sage-soft:#E9F2EC;
  --sand:#E9C79A;
  --tone-marine:#5A87A8;
  --tone-marine-soft:#E7EFF3;
  --tone-sand:#D9A24E;
  --tone-sand-soft:#F8EDDC;
  --tone-plum:#A8789A;
  --tone-plum-soft:#F3E7EE;
  --footer-bg:#F3F8F4;
  --line: rgba(33,31,27,0.07);
  --maxw: 1180px;
  --measure: 930px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font-family:'Raleway', sans-serif;
  font-weight:400;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  overflow-x:hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
em, i{ font-style:normal; }

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *,*::before,*::after{ animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; }
}

:focus-visible{
  outline:2px solid var(--coral);
  outline-offset:4px;
  border-radius:2px;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:11px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--stone);
  font-weight:700;
}
.eyebrow::before{
  content:"";
  width:6px; height:6px;
  border-radius:50%;
  background:var(--coral);
  flex-shrink:0;
}

/* ---------- HEADER (chips flottants, jamais de bandeau) ---------- */
.chip-header{
  position:fixed;
  top:0; left:0; right:0;
  z-index:100;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:clamp(16px, 3vw, 30px) clamp(16px, 4vw, 44px);
  pointer-events:none;
}
.chip{
  pointer-events:auto;
  background:rgba(251,249,244,0.72);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  border-radius:100px;
  box-shadow:0 4px 24px rgba(33,31,27,0.06);
  border:1px solid rgba(33,31,27,0.05);
}
.logo-chip{
  display:flex;
  align-items:center;
  padding:8px 20px 8px 12px;
  text-decoration:none;
  background:transparent;
  border:none;
  box-shadow:none;
  pointer-events:auto;
}
.logo-chip img{ height:72px; width:auto; }
.logo-fallback{
  font-weight:800;
  font-size:16px;
  letter-spacing:.01em;
  color:var(--ink);
}
.logo-fallback span{ color:var(--coral); }

.lang-toggle{
  display:flex;
  align-items:center;
  gap:2px;
  padding:4px;
}
/* Les pastilles sont des liens (<a href="/en/">…) et non plus des boutons :
   c'est ce qui rend les cinq langues découvrables par les moteurs.
   L'état actif se marque donc avec aria-current="page". */
.lang-toggle a{
  appearance:none;
  border:0;
  background:transparent;
  color:var(--stone);
  font-family:'Raleway', sans-serif;
  font-size:11px;
  font-weight:700;
  letter-spacing:.06em;
  padding:9px 13px;
  min-width:36px;
  border-radius:100px;
  cursor:pointer;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  transition: background .3s var(--ease), color .3s var(--ease);
}
.lang-toggle a:hover{ color:var(--ink); }
.lang-toggle a[aria-current="page"]{ background:var(--coral); color:#fff; }
.lang-toggle a[data-lang="fr"][aria-current="page"]{ background:var(--tone-marine); }
.lang-toggle a[data-lang="en"][aria-current="page"]{ background:var(--coral); }
.lang-toggle a[data-lang="es"][aria-current="page"]{ background:var(--sage); }
.lang-toggle a[data-lang="it"][aria-current="page"]{ background:var(--tone-sand); }
.lang-toggle a[data-lang="de"][aria-current="page"]{ background:var(--tone-plum); }

/* ---------- BANDEAU DE SUGGESTION DE LANGUE ---------- */
.lang-suggest{
  position:fixed;
  left:50%;
  bottom:20px;
  transform:translateX(-50%);
  z-index:20;
  display:flex;
  align-items:center;
  gap:4px;
  max-width:calc(100vw - 32px);
  padding:6px 6px 6px 18px;
  background:rgba(251,249,244,0.92);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  border:1px solid var(--line);
  border-radius:100px;
  box-shadow:0 6px 26px rgba(33,31,27,0.10);
}
.lang-suggest[hidden]{ display:none; }
.lang-suggest-link{
  color:var(--ink);
  font-size:12.5px;
  font-weight:500;
  letter-spacing:.02em;
  text-decoration:none;
  border-bottom:1px solid transparent;
  transition:border-color .3s var(--ease);
}
.lang-suggest-link:hover{ border-bottom-color:var(--coral); }
.lang-suggest-close{
  appearance:none;
  border:0;
  background:transparent;
  color:var(--stone);
  font-size:18px;
  line-height:1;
  padding:4px 10px;
  cursor:pointer;
  border-radius:100px;
  transition:color .3s var(--ease);
}
.lang-suggest-close:hover{ color:var(--ink); }

/* ---------- HERO — la sphère qui respire ---------- */
.orbit-hero{
  position:relative;
  padding:clamp(120px, 20vw, 200px) 24px clamp(28px, 5vw, 40px);
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
}
.orbit-field{
  position:relative;
  width:clamp(240px, 34vw, 420px);
  aspect-ratio:1/1;
  display:flex;
  align-items:center;
  justify-content:center;
}
.orbit-ring{
  position:absolute;
  inset:0;
  border-radius:50%;
  border:1px solid var(--line);
  animation: breathe 7s var(--ease) infinite;
}
.ring-b{
  inset:-22px;
  border-color: rgba(255,122,92,0.18);
  animation-duration:9s;
  animation-delay:.4s;
}
@keyframes breathe{
  0%, 100%{ transform:scale(1); opacity:.7; }
  50%{ transform:scale(1.045); opacity:1; }
}
.orbit-photo{
  position:relative;
  width:82%;
  aspect-ratio:1/1;
  border-radius:50%;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:
    0 20px 60px rgba(33,31,27,0.16),
    inset 0 -18px 34px rgba(33,31,27,0.16),
    inset 0 14px 26px rgba(255,255,255,0.6);
  background: radial-gradient(circle at 30% 24%, #FFFFFF, #F1EFE9 78%);
}
.orbit-photo::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:50%;
  z-index:1;
  pointer-events:none;
  transform-origin:center;
  animation: orbit-shine-spin 26s linear infinite;
  background:
    radial-gradient(circle at 28% 20%, rgba(255,255,255,0.95), rgba(255,255,255,0) 14%),
    radial-gradient(circle at 28% 20%, rgba(255,255,255,0.78), rgba(255,255,255,0) 46%),
    radial-gradient(circle at 76% 84%, rgba(33,31,27,0.32), rgba(33,31,27,0) 58%);
}
@keyframes orbit-shine-spin{
  from{ transform:rotate(0deg); }
  to{ transform:rotate(360deg); }
}
.orbit-photo img{
  position:relative;
  z-index:0;
  width:97%; height:97%;
  object-fit:contain;
  object-position:center;
  transform:scale(1.55);
  transform-origin:50% 40%;
}
.orbit-half{
  position:absolute;
  top:0; bottom:0;
  width:50%;
  z-index:3;
  cursor:pointer;
}
.orbit-half-left{ left:0; }
.orbit-half-right{ right:0; }

/* les 5 planètes qui tournent autour du portrait — un clin d'œil direct
   aux 5 sites listés plus bas, dans les mêmes teintes */
.orbit-moons{
  position:absolute;
  inset:0;
  pointer-events:none;
}
.moon-track{
  position:absolute;
  top:50%; left:50%;
  border-radius:50%;
  animation-name: orbit-spin;
  animation-timing-function:linear;
  animation-iteration-count:infinite;
}
.moon-track .moon{
  position:absolute;
  top:0; left:50%;
  border-radius:50%;
  transform:translate(-50%,-50%);
  box-shadow:
    0 2px 6px rgba(33,31,27,0.22),
    inset -2px -2px 3px rgba(33,31,27,0.3),
    inset 1.5px 1.5px 2.5px rgba(255,255,255,0.75);
}
@keyframes orbit-spin{
  from{ transform:translate(-50%,-50%) rotate(0deg); }
  to{ transform:translate(-50%,-50%) rotate(360deg); }
}
.moon-1{ width:calc(100% + 18px); height:calc(100% + 18px); animation-duration:20s; }
.moon-1 .moon{ width:13px; height:13px; }
.moon-2{ width:calc(100% + 46px); height:calc(100% + 46px); animation-duration:30s; animation-direction:reverse; }
.moon-2 .moon{ width:10px; height:10px; }
.moon-3{ width:calc(100% + 74px); height:calc(100% + 74px); animation-duration:25s; }
.moon-3 .moon{ width:12px; height:12px; }
.moon-4{ width:calc(100% + 100px); height:calc(100% + 100px); animation-duration:36s; animation-direction:reverse; }
.moon-4 .moon{ width:9px; height:9px; }
.moon-5{ width:calc(100% + 126px); height:calc(100% + 126px); animation-duration:32s; }
.moon-5 .moon{ width:11px; height:11px; }
.moon-tone-marine{ background:var(--tone-marine); }
.moon-tone-coral{ background:var(--coral); }
.moon-tone-sage{ background:var(--sage); }
.moon-tone-sand{ background:var(--tone-sand); }
.moon-tone-plum{ background:var(--tone-plum); }

.orbit-caption{
  position:relative;
  margin-top:33px;
}
.orbit-names{
  margin:0;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  font-size:11.5px;
  font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--stone);
}
.orbit-sep{ display:none; }
.orbit-name{
  opacity:0;
  transition:opacity .4s var(--ease);
}
.orbit-hero:has(.orbit-half-left:hover) .orbit-name-left,
.orbit-hero:has(.orbit-half-left:focus-visible) .orbit-name-left{ opacity:1; }
.orbit-hero:has(.orbit-half-right:hover) .orbit-name-right,
.orbit-hero:has(.orbit-half-right:focus-visible) .orbit-name-right{ opacity:1; }
.orbit-credit{
  position:absolute;
  top:100%;
  left:50%;
  transform:translateX(-50%);
  margin-top:12px;
  width:max-content;
  max-width:min(86vw, 460px);
  text-align:center;
  font-size:12.5px;
  font-weight:300;
  font-style:italic;
  letter-spacing:.01em;
  line-height:1.5;
  color:var(--stone);
  opacity:0;
  transition:opacity .5s var(--ease);
  pointer-events:none;
}
.orbit-hero:hover .orbit-credit,
.orbit-hero:focus-within .orbit-credit{ opacity:1; }

/* ---------- INTRO ---------- */
.intro{
  max-width:var(--measure);
  margin:0 auto;
  padding:clamp(40px, 8vw, 72px) 24px clamp(56px, 9vw, 96px);
  text-align:center;
}
.intro .eyebrow{ margin-bottom:22px; }
.intro h1{
  font-family:'Raleway', sans-serif;
  font-weight:100;
  letter-spacing:.005em;
  font-size:clamp(30px, 5.6vw, 46px);
  line-height:1.22;
  margin:0;
  color:var(--ink);
}
.breath-dots{
  display:flex;
  justify-content:center;
  gap:12px;
  margin:28px 0 30px;
}
.gallery-marks{
  display:flex;
  justify-content:center;
  gap:12px;
  margin-top:20px;
}
.breath-dots span,
.gallery-marks span{
  width:10px; height:10px;
  border-radius:50%;
  animation: mark-pulse 2.6s ease-in-out infinite;
}
.breath-dots span:nth-child(1), .gallery-marks span:nth-child(1){ background:var(--tone-marine); animation-delay:0s; }
.breath-dots span:nth-child(2), .gallery-marks span:nth-child(2){ background:var(--coral); animation-delay:.22s; }
.breath-dots span:nth-child(3), .gallery-marks span:nth-child(3){ background:var(--sage); animation-delay:.44s; }
.breath-dots span:nth-child(4), .gallery-marks span:nth-child(4){ background:var(--tone-sand); animation-delay:.66s; }
.breath-dots span:nth-child(5), .gallery-marks span:nth-child(5){ background:var(--tone-plum); animation-delay:.88s; }
@keyframes mark-pulse{
  0%, 100%{ opacity:.4; transform:scale(1); }
  50%{ opacity:1; transform:scale(1.4); }
}
.intro p{
  font-family:'Raleway', sans-serif;
  font-weight:300;
  font-size:17px;
  line-height:2;
  color:#4a463f;
  margin:0;
  text-align:justify;
  text-align-last:left;
  hyphens:auto;
  -webkit-hyphens:auto;
}
.intro-closing{
  display:block;
  text-align:left;
  margin-top:20px;
  font-weight:600;
  font-size:15px;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--ink);
}

/* ---------- APPEL À L'ACTION — ACCORD À DEUX ---------- */
.cta-accord{
  max-width:var(--maxw);
  margin:0 auto;
  padding:clamp(60px, 9vw, 100px) clamp(16px, 4vw, 48px);
  text-align:center;
}
.cta-accord-link{
  display:inline-block;
  font-weight:600;
  font-size:15px;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--ink);
  cursor:pointer;
  transition:opacity .3s var(--ease), transform .3s var(--ease);
}
.cta-accord-link:hover{
  opacity:.7;
  transform:scale(1.05);
}
.cta-accord-link:active{
  transform:scale(.98);
}

/* ---------- GALERIE — champ de sphères ---------- */
.gallery-section{
  max-width:var(--maxw);
  margin:0 auto;
  padding:0 clamp(16px, 4vw, 48px) clamp(90px, 11vw, 130px);
}
.gallery-head{
  text-align:center;
  margin-bottom:clamp(48px, 7vw, 76px);
}
.gallery-head h2{
  font-family:'Raleway', sans-serif;
  font-weight:100;
  letter-spacing:.005em;
  font-size:clamp(22px, 3.2vw, 30px);
  margin:0;
  color:var(--ink);
}

/* liste de "planètes" — chaque site est une sphère de couleur, reliée par
   un fin trajet en pointillé qui prolonge le principe orbital du hero */
.planet-list{
  position:relative;
  max-width:820px;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:clamp(44px, 6vw, 68px);
}
.planet-list::before{
  content:"";
  position:absolute;
  left:50%; top:6px; bottom:6px;
  width:1px;
  transform:translateX(-50%);
  background-image:linear-gradient(var(--line) 50%, transparent 0%);
  background-size:1px 12px;
  background-repeat:repeat-y;
}
/* petites spheres de couleur qui glissent en continu le long du champ de
   spheres, pour illustrer que les cinq sites forment un seul reseau */
.planet-links{
  position:absolute;
  inset:0;
  overflow:visible;
  pointer-events:none;
  z-index:0;
}
.planet-links circle{
  filter:drop-shadow(0 2px 5px rgba(33,31,27,.28));
}
@media (prefers-reduced-motion: reduce){
  .planet-links{ display:none; }
}
.planet-row{
  position:relative;
  z-index:1;
  display:flex;
  align-items:center;
  gap:clamp(24px, 4vw, 46px);
  text-align:left;
}
.planet-row:nth-child(even){
  flex-direction:row-reverse;
  text-align:right;
}
.planet-sphere{
  position:relative;
  overflow:hidden;
  flex-shrink:0;
  width:clamp(125px, 15.6vw, 192px);
  aspect-ratio:1/1;
  border-radius:50%;
  box-shadow:
    0 18px 40px rgba(33,31,27,0.16),
    inset 0 -14px 28px rgba(33,31,27,0.22),
    inset 0 11px 22px rgba(255,255,255,0.55);
  transition: transform .5s var(--ease), box-shadow .4s var(--ease);
}
.planet-row:hover .planet-sphere,
.planet-row:focus-visible .planet-sphere{
  transform:scale(1.06);
  box-shadow:
    0 24px 54px rgba(33,31,27,0.22),
    inset 0 -14px 28px rgba(33,31,27,0.24),
    inset 0 11px 22px rgba(255,255,255,0.6);
}
.tone-marine .planet-sphere{ background: radial-gradient(circle at 32% 26%, #BEDAE7, var(--tone-marine) 76%); }
.tone-coral  .planet-sphere{ background: radial-gradient(circle at 32% 26%, #FFD0C0, var(--coral) 76%); }
.tone-sage   .planet-sphere{ background: radial-gradient(circle at 32% 26%, #C9E5D4, var(--sage) 76%); }
.tone-sand   .planet-sphere{ background: radial-gradient(circle at 32% 26%, #F5DEAE, var(--tone-sand) 76%); }
.tone-plum   .planet-sphere{ background: radial-gradient(circle at 32% 26%, #EAD1DF, var(--tone-plum) 76%); }

.planet-frame{
  position:absolute;
  inset:0;
}
.planet-frame-inner{
  position:absolute;
  transform-origin:0 0;
  pointer-events:none;
}
.planet-frame-inner iframe{
  width:100%; height:100%;
  border:0;
  display:block;
  background:transparent;
  pointer-events:none;
}
.planet-shine{
  position:absolute;
  inset:0;
  border-radius:50%;
  pointer-events:none;
  z-index:1;
  background:
    radial-gradient(circle at 28% 20%, rgba(255,255,255,0.78), rgba(255,255,255,0) 46%),
    radial-gradient(circle at 76% 84%, rgba(33,31,27,0.32), rgba(33,31,27,0) 58%);
}

.planet-text{
  display:flex;
  flex-direction:column;
  gap:9px;
}
.planet-name{
  display:inline-flex;
  align-items:center;
  gap:12px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:13px;
  color:var(--ink);
}
.planet-row:nth-child(even) .planet-name{ justify-content:flex-end; }
.planet-caption{
  font-size:15px;
  line-height:1.7;
  color:#6b6559;
  font-weight:300;
  max-width:40ch;
}
.planet-row:nth-child(even) .planet-caption{ margin-left:auto; }

.planet-arrow{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:30px; height:30px;
  border-radius:50%;
  background:var(--paper);
  border:1px solid var(--line);
  color:var(--ink);
  transition: background .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}
.planet-arrow svg{ width:12px; height:12px; }
.planet-row:hover .planet-arrow,
.planet-row:focus-visible .planet-arrow{
  color:#fff;
  transform:translate(2px,-2px);
}
.tone-marine:hover .planet-arrow{ background:var(--tone-marine); }
.tone-coral:hover .planet-arrow{ background:var(--coral); }
.tone-sage:hover .planet-arrow{ background:var(--sage); }
.tone-sand:hover .planet-arrow{ background:var(--tone-sand); }
.tone-plum:hover .planet-arrow{ background:var(--tone-plum); }

/* ---------- FOOTER — carte arrondie posée sur la page ---------- */
.site-footer{
  padding:0 clamp(12px, 3vw, 32px) clamp(24px, 4vw, 40px);
}
.footer-card{
  max-width:var(--maxw);
  margin:0 auto;
  background:var(--footer-bg);
  animation: footer-bg-cycle 55s linear infinite;
  border-radius:clamp(28px, 4vw, 44px);
  padding:clamp(44px, 7vw, 72px) clamp(24px, 5vw, 56px) 28px;
}
@keyframes footer-bg-cycle{
  0%{ background:var(--tone-marine-soft); }
  18.18%{ background:var(--tone-marine-soft); }
  20%{ background:var(--coral-soft); }
  38.18%{ background:var(--coral-soft); }
  40%{ background:var(--sage-soft); }
  58.18%{ background:var(--sage-soft); }
  60%{ background:var(--tone-sand-soft); }
  78.18%{ background:var(--tone-sand-soft); }
  80%{ background:var(--tone-plum-soft); }
  98.18%{ background:var(--tone-plum-soft); }
  100%{ background:var(--tone-marine-soft); }
}
.footer-top{
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  gap:44px;
  padding-bottom:40px;
  border-bottom:1px solid var(--line);
}
.footer-mark{ margin:0; line-height:0; }
.footer-mark img{ height:36px; width:auto; }
.footer-mark-fallback{
  font-weight:800;
  font-size:clamp(24px, 3.4vw, 32px);
  letter-spacing:-.01em;
  color:var(--ink);
}
.footer-mark-fallback span{ color:var(--coral); }
.footer-tagline{
  margin-top:14px;
  font-size:13.5px;
  font-weight:300;
  color:#5c584f;
  max-width:30ch;
  line-height:1.7;
}
.footer-contacts{ display:flex; gap:clamp(32px, 6vw, 72px); flex-wrap:wrap; }
.contact-col .eyebrow{ margin-bottom:14px; }
.contact-col .eyebrow::before{
  width:9px; height:9px;
  animation: footer-dot-cycle 55s linear infinite;
}
.contact-col:nth-child(2) .eyebrow::before{
  animation-delay: -22s; /* toujours décalé de 2 couleurs par rapport à la 1re colonne */
}
@keyframes footer-dot-cycle{
  0%{ background:var(--tone-marine); }
  18.18%{ background:var(--tone-marine); }
  20%{ background:var(--coral); }
  38.18%{ background:var(--coral); }
  40%{ background:var(--sage); }
  58.18%{ background:var(--sage); }
  60%{ background:var(--tone-sand); }
  78.18%{ background:var(--tone-sand); }
  80%{ background:var(--tone-plum); }
  98.18%{ background:var(--tone-plum); }
  100%{ background:var(--tone-marine); }
}
.contact-pill{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:14px;
  font-weight:500;
  padding:9px 16px;
  margin-bottom:6px;
  color:#33322d;
  background:var(--paper);
  border-radius:100px;
  width:fit-content;
  transition:background .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}
.contact-pill:hover{ background:var(--coral); color:#fff; transform:translateY(-2px); }
.contact-pill svg{ width:14px; height:14px; flex-shrink:0; }

.footer-bottom{
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  align-items:flex-start;
  gap:16px;
  padding-top:22px;
  font-size:11.5px;
  font-weight:500;
  color:#928c7d;
  letter-spacing:.03em;
}
.footer-legal, .footer-meta{
  display:flex;
  flex-wrap:wrap;
  gap:4px 16px;
}
.footer-ai-note{
  font-style:italic;
  color:#a29c8e;
}
.footer-ai-note[hidden]{ display:none; }

/* ---------- REVEAL ON SCROLL ---------- */
[data-reveal]{
  opacity:0;
  transform:translateY(22px);
  transition:opacity .9s var(--ease), transform .9s var(--ease);
}
[data-reveal].is-visible{ opacity:1; transform:translateY(0); }

/* ---------- MOBILE ---------- */
@media (max-width:640px){
  .chip-header{ padding:14px; }
  .logo-chip img{ height:48px; }
  .lang-toggle a{ padding:8px 10px; font-size:10px; min-width:28px; }
  .lang-suggest{ bottom:14px; padding-left:14px; }
  .lang-suggest-link{ font-size:12px; }
  .orbit-hero{ padding-top:104px; }
  .intro p{ font-size:15.5px; line-height:1.9; text-align:left; text-align-last:left; hyphens:none; -webkit-hyphens:none; }
  .planet-list{ gap:40px; }
  .planet-row, .planet-row:nth-child(even){
    flex-direction:column;
    text-align:center;
    gap:18px;
  }
  .planet-row:nth-child(even) .planet-name,
  .planet-name{ justify-content:center; }
  .planet-row:nth-child(even) .planet-caption,
  .planet-caption{ margin-left:auto; margin-right:auto; }
  .footer-contacts{ gap:28px; }
  .footer-bottom{ flex-direction:column; }
}

/* =====================================================================
   ACCORD À DEUX — page portraits
   ===================================================================== */

/* --- Bloc titre + intro --- */
.opening{
  padding:clamp(130px,18vw,190px) 24px clamp(40px,6vw,64px);
  max-width:var(--measure);
  margin:0 auto;
  text-align:center;
}
.opening h1{
  margin:0 0 28px;
  font-family:'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight:100;
  font-size:clamp(30px,5.4vw,52px);
  line-height:1.18;
  letter-spacing:.01em;
  text-transform:uppercase;
  color:var(--ink);
}
.lede{
  margin:0;
  font-family:'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight:400;
  font-size:clamp(16px,2vw,18.5px);
  line-height:1.85;
  color:var(--stone);
  text-wrap:pretty;
}

/* --- Photo du duo --- */
.duo-photo{
  max-width:860px;
  margin:0 auto clamp(56px,8vw,88px);
  padding:0 24px;
}
.duo-photo figure{ margin:0; }
.duo-photo img{
  width:100%;
  border-radius:4px;
  box-shadow:0 18px 48px rgba(33,31,27,0.10);
}
.duo-photo figcaption{
  margin-top:14px;
  font-family:'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight:400;
  font-size:11.5px;
  line-height:1.7;
  letter-spacing:.03em;
  color:var(--stone);
  text-align:center;
}

/* --- Deux portraits côte à côte --- */
.portraits{
  max-width:1180px;
  margin:0 auto;
  padding:0 24px clamp(48px,7vw,80px);
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:clamp(32px,5vw,64px);
  align-items:start;
}
.portrait{ border-top:2px solid var(--accent); padding-top:30px; }
.portrait.nc{ --accent:var(--tone-marine); }
.portrait.rc{ --accent:var(--coral); }

.portrait h2{
  margin:0 0 6px;
  font-family:'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight:100;
  font-size:clamp(26px,3.4vw,34px);
  line-height:1.2;
  letter-spacing:.02em;
  text-transform:uppercase;
  color:var(--ink);
}
.portrait .role{
  margin:0 0 26px;
  font-family:'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight:700;
  font-size:11px;
  line-height:1.5;
  letter-spacing:.15em;
  text-transform:uppercase;
  color:var(--accent);
}

/* --- Le corps des portraits (texte injecté via content.json) --- */
.portrait p,
.portrait div > p,
.portrait article > p{
  margin:0 0 17px;
  font-family:'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight:400;
  font-size:16px;
  line-height:1.75;
  color:var(--ink);
  text-align:justify;
  text-justify:inter-word;
  hyphens:auto;
  -webkit-hyphens:auto;
  text-wrap:pretty;
}
.portrait p:last-of-type{ margin-bottom:0; }
.portrait p em,
.portrait p i{
  font-family:inherit;
  font-style:italic;
  font-weight:400;
}

/* --- Citations --- */
.portrait blockquote{
  margin:0 0 26px;
  padding:2px 0 2px 20px;
  border-left:2px solid var(--accent);
  font-family:'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size:15px;
  font-style:italic;
  font-weight:400;
  line-height:1.8;
  color:var(--stone);
}
.portrait blockquote cite{
  display:block;
  margin-top:9px;
  font-family:'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-style:normal;
  font-size:11px;
  font-weight:600;
  line-height:1.5;
  letter-spacing:.07em;
  text-transform:uppercase;
  color:var(--stone);
}

/* --- Repères (Milestones) --- */
.facts{
  margin:30px 0 0;
  padding:24px 0 0;
  border-top:1px solid var(--line);
}
.facts h3{
  margin:0 0 16px;
  font-family:'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size:10.5px;
  font-weight:700;
  line-height:1.5;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--stone);
}
.facts dl{
  margin:0;
  display:grid;
  grid-template-columns:auto 1fr;
  gap:9px 18px;
  font-family:'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size:14.5px;
  line-height:1.6;
}
.facts dt{
  font-family:'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight:700;
  font-size:14.5px;
  line-height:1.6;
  font-variant-numeric:tabular-nums;
  color:var(--accent);
  white-space:nowrap;
}
.facts dd{
  margin:0;
  font-family:'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight:400;
  font-size:14.5px;
  line-height:1.6;
  color:var(--stone);
}
.facts dd em,
.facts dd i{
  font-family:inherit;
  font-style:italic;
  font-weight:400;
}

/* --- Lien vers le site perso --- */
.site-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-top:26px;
  padding:11px 22px;
  border:1px solid var(--accent);
  border-radius:100px;
  font-family:'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size:12px;
  font-weight:600;
  letter-spacing:.06em;
  color:var(--accent);
  text-decoration:none;
  transition:background .3s var(--ease), color .3s var(--ease);
}
.site-link:hover{ background:var(--accent); color:#fff; }
.site-link svg{ width:13px; height:13px; }

/* --- Le binôme --- */
.together{
  max-width:var(--measure);
  margin:0 auto;
  padding:clamp(44px,6vw,68px) 24px clamp(56px,8vw,88px);
  text-align:center;
  border-top:1px solid var(--line);
}
.together h2{
  margin:0 0 22px;
  font-family:'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight:100;
  font-size:clamp(22px,3vw,30px);
  line-height:1.4;
  letter-spacing:.02em;
  text-transform:uppercase;
  color:var(--ink);
}
.together p,
.together section > p,
section.together > p{
  margin:0 0 16px;
  font-family:'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight:400;
  font-size:16px;
  line-height:1.75;
  color:var(--stone);
  text-align:justify;
  text-justify:inter-word;
  hyphens:auto;
  -webkit-hyphens:auto;
  text-wrap:pretty;
}
.together p:last-of-type{ margin-bottom:0; }
.together p em,
.together p i{
  font-family:inherit;
  font-style:italic;
  font-weight:400;
}

/* --- Responsive --- */
@media (max-width:860px){
  .portraits{ grid-template-columns:1fr; gap:56px; }
}
@media (max-width:640px){
  .portrait p,
  .together p,
  .portrait div > p,
  .together section > p{
    text-align:left;
    hyphens:none;
    -webkit-hyphens:none;
  }
  .facts dl{ grid-template-columns:1fr; gap:2px; }
  .facts dd{ margin-bottom:10px; }
}