/* =========================================================
   OZéO Team Building — sections
   ========================================================= */

.section--paper2 { background: var(--paper-2); color: var(--text-ink); }
.section--paper2 .section-label { color: var(--text-ink-muted); }

/* ---------------------------------------------------------
   1. Hero
   --------------------------------------------------------- */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100svh;
  padding-block: clamp(7rem, 14vh, 10rem) clamp(4rem, 8vh, 6rem);
  overflow: hidden;
}
.hero__canvas {
  position: absolute;
  inset: 0;
  z-index: var(--z-canvas);
  width: 100%;
  height: 100%;
}
/* Halo organique — repli visuel si la 3D ne se charge pas */
.hero__glow {
  position: absolute;
  z-index: 1;
  top: 50%; left: 62%;
  width: min(100vw, 980px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  pointer-events: none;
  background:
    radial-gradient(circle at 34% 38%, rgba(236, 103, 26, .30), transparent 58%),
    radial-gradient(circle at 68% 62%, rgba(167, 53, 139, .24), transparent 60%),
    radial-gradient(circle at 52% 78%, rgba(40, 184, 218, .18), transparent 62%);
  filter: blur(10px);
  /* Les dégradés ne sont pas encore transparents au bord de la boîte : sans
     ce masque, le halo se coupe net (franc sur le bord droit du hero). */
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 34%, transparent 68%);
  mask-image: radial-gradient(circle at 50% 50%, #000 34%, transparent 68%);
}

/* Voile : garantit la lisibilité du texte quoi que fasse la scène 3D
   derrière, sans masquer les particules côté photo. */
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    100deg,
    var(--ink) 0%,
    rgba(22, 17, 15, .95) 46%,
    rgba(22, 17, 15, .70) 58%,
    transparent 74%
  );
}
@media (max-width: 900px) {
  /* En colonne, le texte occupe toute la largeur : voile vertical. */
  .hero__scrim {
    background: linear-gradient(
      to bottom,
      transparent 0%,
      rgba(22, 17, 15, .55) 28%,
      rgba(22, 17, 15, .9) 46%
    );
  }
}

.hero__inner {
  position: relative;
  z-index: var(--z-content);
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.hero__title {
  margin: 1.25rem 0 1.5rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--fs-hero);
  letter-spacing: -.03em;
  line-height: .96;
  text-wrap: balance;
}
.hero__lead {
  max-width: 34ch;
  font-size: var(--fs-lead);
  color: var(--text-muted);
}
.hero__motto {
  margin-top: 1.25rem;
  padding-left: 1rem;
  border-left: 3px solid var(--oz-orange);
  font-style: italic;
  color: var(--text);
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: clamp(1.75rem, 3vw, 2.5rem);
}

/* Photo en médaillon organique — sharp : jamais au-delà de sa taille native */
.hero__figure {
  position: relative;
  justify-self: center;
  width: min(100%, 420px);
  margin: 0;
}
.hero__figure img {
  width: 100%;
  border-radius: 58% 42% 47% 53% / 43% 47% 53% 57%;
}
.hero__figure::after {
  content: "";
  position: absolute;
  inset: -5%;
  border: 1px solid rgba(251, 188, 25, .38);
  border-radius: 47% 53% 58% 42% / 53% 43% 57% 47%;
  pointer-events: none;
}

.hero__scroll {
  position: absolute;
  z-index: var(--z-content);
  left: var(--gutter);
  bottom: clamp(1.25rem, 3vh, 2rem);
  display: flex;
  align-items: center;
  gap: .75rem;
  color: var(--text-faint);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-decoration: none;
}
.hero__scroll-line {
  position: relative;
  width: 68px; height: 1px;
  background: var(--line-dark);
  overflow: hidden;
}
.hero__scroll-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--oz-orange);
  transform: translateX(-100%);
  animation: scroll-hint 2.4s var(--ease-out) infinite;
}
@keyframes scroll-hint {
  0%   { transform: translateX(-100%); }
  55%  { transform: translateX(0); }
  100% { transform: translateX(100%); }
}
.hero__scroll:hover { color: var(--text); }

@media (max-width: 900px) {
  .hero { min-height: auto; }
  .hero__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero__figure { order: -1; width: min(78%, 340px); justify-self: start; }
  .hero__lead { max-width: 46ch; }
  .hero__scroll { display: none; }
}

/* ---------------------------------------------------------
   2. Manifeste
   --------------------------------------------------------- */
.manifesto__title {
  max-width: 22ch;
  font-size: var(--fs-h2);
  line-height: 1.04;
  text-wrap: balance;
}
.manifesto__title em {
  font-style: normal;
  color: var(--oz-red);
}
.manifesto__intro {
  max-width: 48ch;
  margin-top: clamp(1.5rem, 3vw, 2.25rem);
  font-size: var(--fs-lead);
  color: var(--text-ink-muted);
}

.manifesto__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  margin-top: clamp(3rem, 7vw, 5.5rem);
}
.pillar {
  position: relative;
  padding-top: 1.75rem;
  border-top: 2px solid var(--text-ink);
}
.pillar__word {
  margin-bottom: .75rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--fs-h3);
  letter-spacing: -.02em;
}
.pillar p { max-width: 40ch; color: var(--text-ink-muted); }

@media (min-width: 901px) {
  .pillar__word { top: 7rem; }
}

.manifesto__quote {
  max-width: 44ch;
  margin: clamp(3rem, 7vw, 5.5rem) 0 0;
  padding-left: clamp(1rem, 2vw, 1.75rem);
  border-left: 3px solid var(--oz-magenta);
  font-size: var(--fs-lead);
  line-height: 1.5;
}
.manifesto__quote strong { font-weight: 600; }

@media (max-width: 900px) {
  .manifesto__grid { grid-template-columns: 1fr; }
}

/* ---------------------------------------------------------
   3. Stratégique
   --------------------------------------------------------- */
.strategy { padding-bottom: 0; }
.strategy__stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 62vh;
  /* les mots convergent vers l'intérieur : rogner les bords évite
     tout débordement horizontal sur petits écrans */
  overflow: hidden;
}
.strategy__center { position: relative; z-index: 1; }
.strategy__title {
  font-size: var(--fs-h2);
  text-align: center;
  text-wrap: balance;
}
.strategy__word { color: var(--oz-orange); }

.converge { display: none; }
.js .converge {
  position: absolute;
  inset: 0;
  display: block;
  pointer-events: none;
}
.converge__item {
  position: absolute;
  left: calc(50% + var(--x));
  top: calc(50% + var(--y));
  /* centrage porté par `translate` : `transform` reste libre pour GSAP */
  translate: -50% -50%;
  padding: .4rem .85rem;
  /* La bordure garde la teinte pleine du logo ; le texte, lui, est éclairci :
     à 13px, le rouge et le magenta purs tombent sous 3.3:1 sur fond sombre. */
  border: 1px solid color-mix(in srgb, var(--c) 62%, transparent);
  border-radius: 100px;
  background: rgba(22, 17, 15, .72);
  color: color-mix(in srgb, var(--c) 60%, #FFF);
  font-size: .8125rem;
  font-weight: 600;
  white-space: nowrap;
}
.converge__target { display: none; }
.js .converge__target {
  display: block;
  margin-top: 2rem;
  text-align: center;
}
.converge__target span {
  display: inline-block;
  padding: .5rem 1.25rem;
  border-radius: 100px;
  background: var(--oz-orange);
  color: #1B0C03;
  font-weight: 600;
  opacity: 0;
}

.strategy__text { padding-bottom: var(--section-y); }
.strategy__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  counter-reset: s;
}
.strategy__list li {
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-dark);
  color: var(--text-muted);
  counter-increment: s;
}
.strategy__list li::before {
  content: "0" counter(s);
  display: block;
  margin-bottom: .75rem;
  color: var(--oz-cyan);
  font-weight: 600;
  font-size: var(--fs-small);
  letter-spacing: .1em;
}
@media (max-width: 860px) {
  .strategy__list { grid-template-columns: 1fr; }
  .converge__item { font-size: .6875rem; padding: .3rem .6rem; }
}

/* ---------------------------------------------------------
   4. Cocktail
   --------------------------------------------------------- */
.cocktail { overflow: hidden; }
/* Texte + étapes à gauche, verre à droite sur toute la hauteur : le bloc
   tient à l'écran (il était épinglé et coupé de 123px auparavant). */
.cocktail__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, .88fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.cocktail__head { grid-column: 1; max-width: 48ch; }
.cocktail__steps { grid-column: 1; }
.cocktail__visual { grid-column: 2; grid-row: 1 / span 2; }
.cocktail__title { font-size: var(--fs-h2); }
.cocktail__lead {
  max-width: 48ch;
  margin-top: 1.25rem;
  font-size: var(--fs-lead);
  color: var(--text-ink-muted);
}
.cocktail__lead span { display: block; }

.cocktail__steps {
  display: grid;
  gap: .35rem;
  margin-top: clamp(2rem, 4vw, 3rem);
}
.step {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: .7rem 0;
  border-bottom: 1px solid var(--line-light);
  color: var(--text-ink-muted);
  transition: color .35s var(--ease-out);
}
.step__num {
  flex: none;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  color: var(--text-ink-muted);
  transition: color .35s var(--ease-out);
}
.step__label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.05rem, 1.8vw, 1.5rem);
  letter-spacing: -.01em;
  line-height: 1.2;
}
.step.is-active { color: var(--text-ink); }
.step.is-active .step__num { color: var(--oz-red-deep); }

.cocktail__visual {
  position: relative;
  display: grid;
  place-items: center;
  width: min(96%, 450px);
  aspect-ratio: 1;
  margin-inline: auto;
}
.cocktail__blob {
  position: absolute;
  inset: 2%;
  border-radius: 43% 57% 61% 39% / 55% 42% 58% 45%;
  background: linear-gradient(135deg, var(--oz-orange), var(--oz-magenta) 58%, var(--oz-yellow));
  opacity: .9;
  will-change: transform;
}

.cocktail__photo {
  position: relative;
  z-index: 1;
  width: 86%;
  aspect-ratio: 1;
  margin: 0;
}
.cocktail__photo picture { height: 100%; }
.cocktail__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 18px 40px rgba(36, 27, 22, .28);
}

@media (max-width: 900px) {
  .cocktail__inner { grid-template-columns: 1fr; }
  .cocktail__head, .cocktail__steps, .cocktail__visual { grid-column: 1; }
  .cocktail__visual { grid-row: auto; margin-top: clamp(2rem, 5vw, 3rem); }
}

/* ---------------------------------------------------------
   5. Postures
   --------------------------------------------------------- */
.postures { overflow: hidden; }
.postures__head { max-width: none; }
.postures__title { max-width: 20ch; font-size: var(--fs-h2); }
.postures__lead {
  max-width: 58ch;
  margin-top: 1.25rem;
  font-size: var(--fs-lead);
  color: var(--text-muted);
}

/* Trois panneaux pleine largeur, empilés : tout est visible d'un coup et
   le texte respire (le défilement horizontal les bridait à 640px). */
.postures__viewport { margin-top: clamp(2.5rem, 5vw, 4rem); }
.postures__track {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  padding-inline: var(--gutter);
  max-width: var(--wrap);
  margin-inline: auto;
}

.posture {
  display: grid;
  grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--ink-3);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
}
/* alternance gauche/droite pour le rythme */
.posture:nth-child(even) .posture__media { order: 2; }

.posture__media {
  position: relative;
  display: grid;
  place-items: center;
  width: min(100%, 320px);
  aspect-ratio: 1;
  justify-self: center;
  background: transparent;
}
.posture__index {
  margin-bottom: .5rem;
  color: var(--oz-orange);
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: .16em;
}
.posture__word {
  margin-bottom: .85rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.75rem, 3.4vw, 2.75rem);
  letter-spacing: -.02em;
}
.posture__body p:last-child { color: var(--text-muted); }

/* Créateur : trois cercles parfaits qui se composent. */
.posture__shapes {
  position: relative;
  display: block;
  height: 80%;
  aspect-ratio: 1;
  width: auto;
}
.posture__shapes i {
  position: absolute;
  display: block;
  border-radius: 50%;
  aspect-ratio: 1;
  mix-blend-mode: screen;
}
.posture__shapes i:nth-child(1) { width: 45%; left: 7%; top: 16%; color: var(--oz-red); background: currentColor; }
.posture__shapes i:nth-child(2) { width: 45%; right: 7%; top: 25%; color: var(--oz-orange); background: currentColor; }
.posture__shapes i:nth-child(3) { width: 45%; left: 28%; bottom: 10%; color: var(--oz-magenta); background: currentColor; }

/* Organisateur : onde audio en lignes, adaptée du CodePen de Chris Gannon. */
.posture__bars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(3px, .8%, 7px);
  width: 86%;
  height: 72%;
}
.posture__bars i {
  display: block;
  flex: 1 1 0;
  min-width: 2px;
  height: 100%;
  border-radius: 100px;
  color: var(--oz-cyan);
  background: var(--oz-cyan);
  transform-origin: 50% 50%;
  transform: scaleY(.3);
}
.posture__bars i:nth-child(5n + 2) { background: var(--oz-yellow); }
.posture__bars i:nth-child(1), .posture__bars i:nth-child(25) { height: 22%; }
.posture__bars i:nth-child(2), .posture__bars i:nth-child(24) { height: 32%; }
.posture__bars i:nth-child(3), .posture__bars i:nth-child(23) { height: 44%; }
.posture__bars i:nth-child(4), .posture__bars i:nth-child(22) { height: 56%; }
.posture__bars i:nth-child(5), .posture__bars i:nth-child(21) { height: 68%; }
.posture__bars i:nth-child(6), .posture__bars i:nth-child(20) { height: 78%; }
.posture__bars i:nth-child(7), .posture__bars i:nth-child(19) { height: 86%; }
.posture__bars i:nth-child(8), .posture__bars i:nth-child(18) { height: 92%; }
.posture__bars i:nth-child(9), .posture__bars i:nth-child(17) { height: 96%; }

/* Animateur : deux anneaux organiques en rotation, adaptés du CodePen NOrjpQ. */
.posture__energy {
  position: relative;
  display: grid;
  place-items: center;
  width: 76%;
  aspect-ratio: 1;
}
.posture__energy i {
  position: absolute;
  inset: 4%;
  border: clamp(4px, .8vw, 8px) solid transparent;
  background: var(--oz-red) border-box;
  -webkit-mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  border-radius: 44% 56% 62% 38% / 53% 42% 58% 47%;
}
.posture__energy i:nth-child(2) {
  inset: 12%;
  border-radius: 58% 42% 39% 61% / 45% 62% 38% 55%;
  background: var(--oz-cyan) border-box;
  opacity: .82;
}
.posture__energy i:nth-child(3) {
  inset: 21%;
  border-radius: 39% 61% 52% 48% / 58% 43% 57% 42%;
  background: var(--oz-yellow) border-box;
  opacity: .76;
}
.posture__energy i:nth-child(4) {
  inset: 29%;
  border-radius: 62% 38% 47% 53% / 41% 59% 44% 56%;
  background: var(--oz-orange) border-box;
  opacity: .7;
}
.posture__energy i:nth-child(5) {
  inset: 37%;
  border-radius: 48% 52% 63% 37% / 55% 39% 61% 45%;
  background: var(--oz-magenta) border-box;
  opacity: .64;
}
.posture__energy i:nth-child(6) {
  inset: 44%;
  border-radius: 57% 43% 41% 59% / 46% 62% 38% 54%;
  background: var(--oz-cyan) border-box;
  opacity: .58;
}
.posture__energy b {
  width: 15%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #fff;
}

/* Sous 900px, la colonne média figée à 360px ne laissait que ~235px au
   texte : on empile plutôt que de l'étrangler. */
@media (max-width: 900px) {
  .posture { grid-template-columns: 1fr; }
  .posture:nth-child(even) .posture__media { order: 0; }
  .posture__media { width: min(100%, 320px); }
}

/* ---------------------------------------------------------
   6. Valeurs
   --------------------------------------------------------- */
.values { padding-bottom: clamp(3rem, 6vw, 5rem); }
.values__list { margin-top: clamp(1rem, 2vw, 2rem); }
.value {
  padding-block: clamp(2.5rem, 6vw, 4.5rem);
  border-top: 1px solid var(--line-dark);
}
.value:last-child { border-bottom: 1px solid var(--line-dark); }
.value__inner {
  display: grid;
  /* colonne de texte garantie : le mot ne peut plus l'écraser */
  grid-template-columns: minmax(0, 1fr) minmax(15rem, 27%);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
}
.value__word {
  /* Volontairement plus sage que --fs-huge : à 173px le mot mangeait
     toute la ligne et ne laissait que 124px au texte. */
  font-size: clamp(2.25rem, 6.2vw, 5.5rem);
  line-height: .92;
  color: var(--value-color);
  /* interlettrage FIXE : l'animer changeait la largeur et faisait
     sauter les lignes à chaque scroll */
  letter-spacing: -.03em;
  white-space: nowrap;
}
.text-arrival {
  display: inline-block;
}
.text-arrival--approach {
  color: var(--oz-red-deep);
  text-decoration: none;
}
.value__text {
  color: var(--text-muted);
  font-size: var(--fs-lead);
  text-align: right;
  text-wrap: balance;
}
@media (max-width: 860px) {
  .value__inner { grid-template-columns: 1fr; }
  .value__text { text-align: left; }
}

/* ---------------------------------------------------------
   7. Équipe
   --------------------------------------------------------- */
.team__title {
  max-width: 18ch;
  font-size: var(--fs-h2);
  text-wrap: balance;
}

.member {
  display: grid;
  /* 300px : de quoi loger le portrait (200) ET la forme colorée qui le
     déborde (280), même quand elle pivote au scroll. */
  grid-template-columns: 300px minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
  padding-block: clamp(2.5rem, 6vw, 4.5rem);
  border-top: 1px solid var(--line-light);
}
.member:first-of-type { margin-top: clamp(2rem, 5vw, 3.5rem); }
.member--alt { grid-template-columns: minmax(0, 1fr) 300px; }
.member--alt .member__portrait { order: 2; }

/* Portrait volontairement contenu : la source est en 200×200,
   l'agrandir le rendrait flou. Le grand mot, c'est le prénom. */
.member__portrait {
  position: relative;
  width: 200px;
  justify-self: center;
}
.member__body {
  position: relative;
  z-index: 2;
}
.member__portrait img {
  position: relative;
  z-index: 1;
  width: 200px;
  height: 200px;
  border-radius: 56% 44% 48% 52% / 45% 50% 50% 55%;
  object-fit: cover;
}
/* Débordant du portrait de tous les côtés : la couleur cerne le visage.
   Pas de largeur fixe — `inset` négatif l'étend autour des 200px. */
.member__blob {
  position: absolute;
  z-index: 0;
  inset: -40px;
  border-radius: 44% 56% 52% 48% / 50% 45% 55% 50%;
  background: linear-gradient(140deg, var(--oz-orange), var(--oz-magenta));
  opacity: .92;
  will-change: transform;
}
.member--alt .member__blob {
  border-radius: 56% 44% 48% 52% / 45% 50% 50% 55%;
  background: linear-gradient(140deg, var(--oz-cyan), var(--oz-yellow));
}

.member__name {
  font-size: clamp(2.25rem, 5vw, 4rem);
  line-height: .94;
  color: var(--text-ink);
}
.member__surname {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  color: var(--oz-red);
  letter-spacing: -.01em;
}
.member__role {
  margin-top: 1rem;
  font-weight: 600;
  color: var(--text-ink);
}
.member__sub {
  max-width: 46ch;
  color: var(--text-ink-muted);
}
.member__bio {
  max-width: 62ch;
  margin-top: 1.25rem;
  color: var(--text-ink-muted);
}

.member__more { margin-top: 1.25rem; }
.member__more summary {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  min-height: 44px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  color: var(--text-ink);
  transition: color .25s var(--ease-out);
}
.member__more summary::-webkit-details-marker { display: none; }

/* Le + est dessiné, pas écrit : un glyphe « + » ne se centre pas dans un
   cercle (son approche et sa hauteur d'œil sont propres à la fonte), et
   basculer sur « – » changeait de glyphe, donc déplaçait le trait. Deux
   barres réglées au pixel : la verticale se couche sur l'horizontale à
   l'ouverture, et le signe reste centré quoi qu'il arrive. */
.member__plus {
  position: relative;
  flex: none;
  width: 24px; height: 24px;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  transition: background .25s var(--ease-out),
              border-color .25s var(--ease-out),
              transform .4s var(--ease-out);
}
.member__plus::before,
.member__plus::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 10px; height: 2px;
  border-radius: 2px;
  /* --oz-red tient 5:1 sur --paper, là où l'orange plafonne à 3:1. */
  background: var(--oz-red);
  transform: translate(-50%, -50%);
  transition: background .25s var(--ease-out), transform .4s var(--ease-out);
}
.member__plus::after { transform: translate(-50%, -50%) rotate(90deg); }

.member__more[open] .member__plus { transform: rotate(180deg); }
.member__more[open] .member__plus::after { transform: translate(-50%, -50%) rotate(0deg); }

/* Survol réservé aux vrais pointeurs : au doigt, l'état resterait collé
   après le tap. Le tactile a `:active`. */
@media (hover: hover) {
  .member__more summary:hover { color: var(--oz-red-deep); }
  .member__more summary:hover .member__plus {
    background: var(--oz-orange);
    border-color: var(--oz-orange);
  }
  .member__more summary:hover .member__plus::before,
  .member__more summary:hover .member__plus::after { background: #1B0C03; }
}
.member__more summary:active .member__plus { background: var(--oz-orange); border-color: var(--oz-orange); }
.member__more summary:active .member__plus::before,
.member__more summary:active .member__plus::after { background: #1B0C03; }

.member__more summary:focus-visible { color: var(--oz-red-deep); }
.member__more summary:focus-visible .member__plus { border-color: var(--oz-orange); }
.member__more ul {
  display: grid;
  gap: .4rem;
  padding: .5rem 0 0 1.1rem;
  list-style: disc;
  color: var(--text-ink-muted);
}
.member__more a { color: var(--oz-red); font-weight: 600; }

.member__links {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.5rem;
}
.member__links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: .5rem 1.1rem;
  border: 1px solid var(--line-light);
  border-radius: 100px;
  font-weight: 600;
  font-size: .875rem;
  text-decoration: none;
  transition: background .25s, color .25s, border-color .25s;
}
.member__links a:hover, .member__links a:focus-visible {
  background: var(--text-ink);
  border-color: var(--text-ink);
  color: var(--paper);
}

@media (max-width: 780px) {
  .member, .member--alt { grid-template-columns: 1fr; }
  .member--alt .member__portrait { order: 0; }
  /* centré, et non collé à gauche : la forme colorée déborde de 40px et
     serait rognée par le bord de l'écran */
  .member__portrait {
    justify-self: center;
    margin-bottom: 1.25rem;
  }
}

/* ---------------------------------------------------------
   8. Contact
   --------------------------------------------------------- */
.contact { overflow: hidden; }
.contact__inner { position: relative; z-index: var(--z-content); }
.contact__title {
  max-width: 20ch;
  font-size: var(--fs-h2);
  text-wrap: balance;
}
.contact__accent {
  color: var(--oz-orange);
  font-weight: inherit;
  text-shadow: 0 0 28px rgba(236, 103, 26, .22);
}

.contact__grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  margin-top: clamp(2.5rem, 5vw, 4rem);
}
.contact__pitch {
  font-size: var(--fs-lead);
  color: var(--text-muted);
}
.contact__coords {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
}
.contact__label {
  display: block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.contact__value {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.1rem, 1.9vw, 1.5rem);
  color: var(--oz-orange);
  text-decoration: none;
  overflow-wrap: anywhere;
}
.contact__value:hover { text-decoration: underline; }

.contact__links {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.25rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-dark);
  font-size: var(--fs-small);
}
.contact__links a { color: var(--text-muted); }
.contact__links a:hover { color: var(--oz-cyan); }

/* --- Formulaire --- */
.form { display: grid; gap: 1rem; }
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.field { display: grid; gap: .4rem; }
.field label {
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--text-muted);
}
.field label span { color: var(--oz-orange); margin-left: .15em; }
.field label em { font-style: normal; font-weight: 400; color: var(--text-faint); }
.field input, .field textarea {
  width: 100%;
  min-height: 48px;
  padding: .75rem 1rem;
  background: var(--ink-3);
  border: 1px solid var(--line-dark);
  border-radius: 10px;
  color: var(--text);
  font: inherit;
  transition: border-color .2s, background .2s;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--text-faint); }
.field input:focus, .field textarea:focus { border-color: var(--oz-orange); outline-offset: 1px; }
.field--hp {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.form__submit { justify-self: start; margin-top: .5rem; }
.form__submit::before { content: none; }
.form__status { min-height: 1.5em; font-weight: 600; }
.form__status.is-ok  { color: var(--oz-cyan); }
.form__status.is-err { color: #FF8A6B; }

.form__disclosure {
  font-size: .75rem;
  line-height: 1.5;
  color: var(--text-faint);
}
.form__disclosure a { color: var(--text-muted); }

@media (max-width: 900px) {
  .contact__grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .form__row { grid-template-columns: 1fr; }
}
