/* components.css */
/* Boutons, filtres, titres, social, animations… mais PAS de nav */

/* ============================
   BOUTON D'ACTION GÉNÉRIQUE
   ============================ */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 999px;
  background-color: var(--color-accent);
  color: #000;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition:
    transform var(--speed-fast) var(--ease-snap),
    box-shadow var(--speed-fast) var(--ease-snap),
    background-color var(--speed-fast) var(--ease-snap);
}

.btn:hover,
.btn:focus-visible {
  background-color: var(--color-accent-soft);
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}
.pk-btn-wrap-right {
  text-align: right;
  margin-top: 1.2rem; /* optionnel */
}

#triangle-topleft {
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-top: 68px solid var(--accent, #dd9933);
    border-left: 68px solid transparent;
    z-index: 2;
    pointer-events: none;
}

/* === PK Scroll Progress (vertical) === */
.pk-progress{
  position: fixed;
  right: 14px;              /* passe à left:14px si tu préfères */
  top: 14px;
  bottom: 14px;
  width: 4px;
  z-index: 9999;
  pointer-events: none;
  opacity: .85;
}
.pk-progress__bar{
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0%;
  background: #dd9933;
  border-radius: 999px;
  box-shadow: 0 0 10px rgba(221,153,51,.25);
  transform-origin: bottom;
}



/* optionnel: discret sur mobile */
@media (max-width: 820px){
  .pk-progress{ right: 10px; width: 3px; opacity: .65; }
}

/* respect reduce motion */
@media (prefers-reduced-motion: reduce){
  .pk-progress__bar{ box-shadow: none; }
}


/* ========================= */
/* Boutons PK 2025           */
/* ========================= */

.pk-btn {
  display: inline-block;
  padding: 0.75rem 1.4rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.23s ease, color 0.23s ease, transform 0.18s ease;
}

/* Version principale ORANGE (accent PK) */
.pk-btn--primary {
  background: var(--color-accent, #dd9933);
  color: #000;
}

.pk-btn--primary:hover,
.pk-btn--primary:focus-visible {
  background: #404040;
  color:#fff;
  transform: translateY(-2px);
}

.pk-btn--primary:active {
  background: #c9822a;
  transform: translateY(0);
}


/* ============================
   BOUTONS DE FILTRE MIXITUP
   ============================ */
.filter-menu .option-set > li {
  /* largeur identique et plus étroite */
  text-align: center;
  padding: 10px 8px;
  border-radius: 4px;
  color: #000;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition:
    background-color var(--speed-fast) var(--ease-snap),
    color var(--speed-fast) var(--ease-snap),
    transform var(--speed-fast) var(--ease-snap);
}

.filter-menu .option-set > li:hover,
.filter-menu .option-set > li:focus-visible {
  background-color: var(--color-accent-soft);
  transform: translateY(-1px);
}

/* État actif des filtres */
.filter-menu .option-set > li.active {
  background-color: #000;
  color: #fff;
  border-color: #000;
}

/* ============================
   FONT BEBAS NEUE (UTILISABLE PARTOUT)
   ============================ */
@font-face {
  font-family: "Bebas Neue";
  src: url("/fonts/BebasNeue-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: optional;
}

/* Raleway 800 – titre */
@font-face {
  font-family: "Raleway";
  src: url("/fonts/Raleway-800-latin.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* ============================
   ANIMATIONS GLOBALES PK 2025
   ============================ */

/* Base générique : le bloc [data-animate] est caché + déplacé */
[data-animate]{
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
  transition-delay: var(--pk-delay, var(--pk-anim-delay, 0ms));
}

/* Visible générique : on rétablit */
[data-animate].is-visible{
  opacity: 1;
  transform: translateY(0);
}

/* OPTION A (recommandée) :
   Les enfants suivent l’anim du wrapper (ex: h2 dans .around-title) */
[data-animate] > *{
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
  transition-delay: var(--pk-delay, var(--pk-anim-delay, 0ms));
}

[data-animate].is-visible > *{
  opacity: 1;
  transform: translateY(0);
}

/* Respect des préférences utilisateur : pas d'anim si reduce */
@media (prefers-reduced-motion: reduce){
  [data-animate],
  [data-animate] > *{
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

/* Variantes animées uniquement si no-preference */
@media (prefers-reduced-motion: no-preference){

  /* PHONE – entrée par la droite */
  [data-animate="phone-right"]{
    opacity: 0;
    transform: translateX(32px);
    filter: blur(4px);
  }
  [data-animate="phone-right"].is-visible{
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
    transition:
      opacity 0.55s cubic-bezier(.21,.8,.35,1),
      transform 0.55s cubic-bezier(.21,.8,.35,1),
      filter 0.55s cubic-bezier(.21,.8,.35,1);
  }

  /* Social – entrée par la gauche */
  [data-animate="social-left"]{
    opacity: 0;
    transform: translateX(-32px);
    filter: blur(4px);
  }
  [data-animate="social-left"].is-visible{
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
    transition:
      opacity 0.55s cubic-bezier(.21,.8,.35,1),
      transform 0.55s cubic-bezier(.21,.8,.35,1),
      filter 0.55s cubic-bezier(.21,.8,.35,1);
  }

  /* État initial des icônes sociales (hero) */
  .pk-hero-social a{
    opacity: 0;
    transform: translateY(10px);
    transition:
      opacity 0.45s cubic-bezier(.21,.8,.35,1),
      transform 0.45s cubic-bezier(.21,.8,.35,1);
    transition-delay: var(--pk-delay, 0s);
  }

  /* Quand le bloc social est visible, on déclenche le stagger */
  .pk-hero-social.is-visible a{
    opacity: 1;
    transform: translateY(0);
  }

  /* Variantes horizontales simples */
  [data-animate="fade-left"]{ transform: translateX(16px); }
  [data-animate="fade-right"]{ transform: translateX(-16px); }
}

/* ============================
   TITRE DE SECTION (H2)
   ============================ */
.pk-section-title {
  font-family: "Raleway", sans-serif;
  font-size: 64px;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: .02em;
  margin: 0 auto 40px;
  position: relative;
  text-align: center !important;
  text-shadow: 0px 0px 6px #000;
  padding-top:44px;
}

.pk-square {
    display: inline-block;
    width: 14px;
    height: 14px;
    background: var(--pk-accent, #dd9933);
    border-radius: 2px;
    vertical-align: baseline;
    transform: translateY(-0.16em);
}


/* ============================
   GRILLE RÉSEAUX SOCIAUX
   ============================ */
.pk-social-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-block: 2.5rem;
}

/* Mobile : 3 + 3 */
@media (max-width: 640px){
  .pk-social-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;
    row-gap: 3.8rem;
  }
}
/* Base des boutons */
.pk-social-link {
  --pk-social-size: 66px;
  width: var(--pk-social-size);
  height: var(--pk-social-size);
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;                         /* pictos SVG en blanc */
  box-shadow: 0 10px 25px rgba(0,0,0,.35);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.pk-social-link .pk-icon,
.pk-social-link svg {
  width: 34px;
  height: 34px;
}

/* Effet hover générique */
.pk-social-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0,0,0,.55);
}

/* Couleurs de marque */
.pk-social-link--facebook  { background: #1877f2; }
.pk-social-link--instagram { background: #e1306c; }
.pk-social-link--mail      { background: #dd9933; }  /* accent PK */
.pk-social-link--linkedin  { background: #0a66c2; }
.pk-social-link--whatsapp  { background: #25d366; }
.pk-social-link--px500     { background: #0099e5; }


/* ========================= */
/* PORTFOLIO – CONTACT SHEET */
/* ========================= */

.pk-portfolio-grid--contact {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
  padding: 1.5rem 0;
  counter-reset: pk-shot;
}

@media (max-width: 1200px) {
  .pk-portfolio-grid--contact {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .pk-portfolio-grid--contact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .pk-portfolio-grid--contact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Chaque item = petite diapo numérotée */
.pk-portfolio-grid--contact .pk-portfolio-item {
  position: relative;
  counter-increment: pk-shot;
}

/* Cadre + fond discret “planche contact” */
.pk-portfolio-grid--contact .pk-portfolio-item a {
  display: block;
  border: 1px solid rgba(255,255,255,0.18);
  padding: 0.25rem;
  background: rgba(0,0,0,0.6);
  transition:
    transform 0.18s ease-out,
    box-shadow 0.18s ease-out,
    border-color 0.18s ease-out;
}

.pk-portfolio-grid--contact .pk-portfolio-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Numéro en coin, style planche contact */
.pk-portfolio-grid--contact .pk-portfolio-item::before {
  content: counter(pk-shot);
  position: absolute;
  top: 4px;
  left: 6px;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  opacity: 0.75;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.7);
}

/* Hover léger */
.pk-portfolio-grid--contact .pk-portfolio-item a:hover,
.pk-portfolio-grid--contact .pk-portfolio-item a:focus-visible {
  border-color: var(--color-accent, #dd9933);
  box-shadow: 0 0 0 1px rgba(221,153,51,0.7);
  transform: translateY(-2px);
}

#shooting-page .lead-p a {
    color: #dd9933;
    text-decoration: none;
    font-weight: 600;
}

/* === BOUTON GHOST ========================================= */

.pk-btn--ghost {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 10px 16px;
    border-radius: 4px;
    border: 1px solid #3a3a3a;
    color: #f0f0f0;
    text-decoration: none;
    background: rgba(0, 0, 0, 0.4);
    font-family: 'Bebas Neue';
    letter-spacing: 2px;
    font-size: 18px;
    font-weight: 100;
}

.pk-btn--ghost:hover {
  background: rgba(221,153,51,0.12); /* léger voile orange */
  color: var(--color-accent-hover, #ffb85b);
  border-color: var(--color-accent-hover, #ffb85b);
}

/* =========================
   PACK ZEN (full width card)
   ========================= */

.pk-zenPage{
  min-height: 100vh;
  overflow-y: auto; 
  background: #101010;
  padding: 0px 0px;
  
}

.pk-zenPage__inner{
  max-width: 1200px;      /* CLÉ */
  margin: 0 auto;
}

header.pk-zenHero {
    text-align: center;
    background: #000;
    border-bottom: 1px solid #202020;
}

.pk-zen-title {
    font-family: "Raleway", sans-serif;
    font-size: 64px;
    line-height: 1;
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: .02em;
    margin: 0 auto 12px;
    position: relative;
    display: inline-flex;
    align-items: flex-end;
    gap: 12px;
    text-align: left;
    text-align: center;
    justify-content: center;
    text-shadow: 0px 0px 6px #000;
    padding: 24px 0 0 0;
}

.pk-zenHero__tagline {
    font-family: 'Bebas Neue';
    font-weight: 100;
    letter-spacing: 1.4px;
    color: #b2b2b2;
}

.pk-zenLead {
    font-size: 1.25rem;
    line-height: 1.55;
    color: #dd9933;
    text-transform: uppercase;
    padding: 8px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 6px;
    border: 1px solid #303030;
    box-shadow: 0px 0px 8px #000;
}

.pk-zenLead--alt {
    font-size: 1.25rem;
    line-height: 1.55;
    margin-bottom: 28px;
    color: #fff;
    text-transform: uppercase;
}

.pk-zenCol p {
    font-family: 'Helvetica';
    text-transform:none;
    font-size:1rem;
    margin-left: 14px;
    
}

.pk-zenCol li {
    font-family: 'Helvetica';
    text-transform:none;
    font-size:1rem;
}

.pk-zenLead + p{
  margin-top: 22px;
}

.pk-zenGrid{
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr; /* gauche plus large */
  gap: 64px;
  align-items: start;
}

/* Mobile : retour en colonne unique */
@media (max-width: 900px){
  .pk-zenGrid{
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.pk-zenList{
  list-style: none;
  padding: 0;
  margin: 24px 0;
  display: grid;
  gap: 4px;
}

.pk-zenList li{
  position: relative;
  padding-left: 22px;
}

.pk-zenList li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .55em;
    width: 8px;
    height: 8px;
    border-radius: 2px;
    background: #dd9933;
}

.pk-zenCTA{
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.12);
  text-align: center;
}
.pk-zenCard {
    position: relative;
    display: block;
    width: 100%;
    margin-top: 26px;
    padding: 26px 26px 22px;
    border-radius: 8px;
    background: #151515;
    color: rgba(255, 255, 255, .85);
    border: 1px solid rgba(221, 153, 51, .70);
    text-decoration: none;
    overflow: hidden;
    cursor: pointer;
    outline: none;
    will-change: transform;
}
.pk-zenCard:focus-visible{
  box-shadow:
    0 0 0 3px rgba(221,153,51,.35),
    0 24px 60px rgba(0,0,0,.55);
  border-color: rgba(221,153,51,.55);
}

.pk-zenCard:hover{
  box-shadow:
    0 18px 50px rgba(0,0,0,.55),
    0 0 0 1px rgba(221,153,51,.22) inset;
}

@media (prefers-reduced-motion: reduce){
  .pk-zenCard{ will-change:auto; }
}
.pk-zenCard__stars{
  position: absolute;
  top: 14px;
  right: 14px;
  color: rgba(221,153,51,.65);
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.55));
  pointer-events: none;
  opacity: .95;
  transform: translateY(0);
}

.pk-zenCard:hover .pk-zenCard__stars{
  transform: translateY(-1px);
}

.pk-zenCard__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border-radius: 6px;
    background: rgba(221, 153, 51, .16);
    border: 1px solid rgba(221, 153, 51, .35);
    color: #fff;
    font-weight: 700;
    letter-spacing: 4.4px;
    text-transform: uppercase;
}
.pk-zenCard__tag{
  margin-top: 10px;
  font-size: 1.05rem;
  opacity: .92;
}

.pk-zenCard__cols{
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
}
@media (max-width: 720px){
  .pk-zenCard__cols{ grid-template-columns: 1fr; }
}

svg.pk-iconzen {
    height: 64px;
    width: 64px;
    fill: #d93;
}

.pk-zen-stars {
    height: 64px;
    width: 64px;
    padding: 0;
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    fill: #fff;
}

.pk-zenCard__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
    font-family: 'Bebas Neue';
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.pk-zenCard__list li{
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.pk-zenCard__list .dot{
  width: 10px; height: 10px;
  margin-top: 9px;
  border-radius: 50%;
  background: #dd9933;
  flex: 0 0 10px;
}

.pk-zenCard__cta{
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255,255,255,.85);
}
.pk-zenCard__ctaTxt {
    opacity: 1;
    text-transform: uppercase;
    letter-spacing: 1.4px;
}

.pk-zenCard__ctaArrow{ color:#dd9933; font-weight:700; }

.pk-zenIcons{
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.10);
}

.pk-zenIcons__grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px 12px;
}

.pk-zenIcon{
  margin: 0;
  padding: 12px 10px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
  display: grid;
  place-items: center;
  gap: 8px;
  text-align: center;
}

.pk-zenIcon img{
  width: 44px;
  height: 44px;
  display: block;
  opacity: .92;
  filter: grayscale(1) brightness(1.25);
  transition: transform .18s ease, filter .18s ease, opacity .18s ease;
}

.pk-zenIcon figcaption {
    font-size: 1rem;
    line-height: 1.6;
    text-transform: uppercase;
    color: #d93;
}

.pk-zenIcon:hover img{
  transform: translateY(-1px);
  filter: none;
  opacity: 1;
}

.pk-zenIcon:hover{
  border-color: rgba(221,153,51,.28);
}

@media (max-width: 520px){
  .pk-zenIcons__grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.pk-zenIcon__svg{
  width: 64px;
  height: 64px;
  display: block;
  fill:#fff;
}

.pk-case {
    padding-top: 0px;
    margin-top: 0px;
    background: #202020;
    line-height: 44px;
    border: 1px solid #404040;
    font-family: 'bebas neue';
    border-radius: 6px;
}

.pk-case p {
    font-family: 'system-ui';
    padding-left: 32px;
    padding-right: 32px;
    margin-bottom: 44px;
}
.pk-case-title {
    font-size: 24px;
    text-transform: uppercase;
    background: #dd9933;
    padding: 6px 18px;
    border-bottom-left-radius: 0px;
    color: #000;
    margin-top: 0px;
    border-bottom-right-radius: 0px;
    border-top-right-radius: 6px;
    border-top-left-radius: 6px;
    letter-spacing: 1.1px;
    font-family: 'bebas neue' !important;
}

section.pk-compare-wrap.pk-compare-wrap--alt {
    background: #101010;
    border-top: 1px solid #444;
    border-bottom: 1px solid #444;
}

.pk-author-box {
  background: #202020;
  border-top: 1px solid rgba(221,153,51,0.2);
  border-bottom: 1px solid rgba(221,153,51,0.2);
  padding: 40px 0;
  margin: 60px 0;
}

.pk-author-inner {
  display: flex;
  align-items: center;
  gap: 20px;
}

.pk-author-photo img {
  border-radius: 6px;
  width: 120px;
  height: 120px;
  object-fit: cover;
  border: 6px solid #dd9933;
}

.pk-author-content h3 {
  margin-bottom: 10px;
  font-size: 1.4rem;
}

.pk-author-content p {
  margin: 5px 0;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .pk-author-inner {
    flex-direction: column;
    text-align: center;
  }
}




/* =========================
   MODALE 95% x 95%
   ========================= */
.pk-modal[hidden]{ display:none; }

.pk-modal{
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: auto;
}

.pk-modal__overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(2px);
}

.pk-modal__panel{
  position: relative;
  width: 95vw;
  height: 95vh;
  margin: 2.5vh auto;
  border-radius: 0px;
  overflow: hidden;
  background: #0b0b0b;
  border: 1px solid rgba(255,255,255,.25);
  box-shadow: 0 30px 90px rgba(0,0,0,.95);
  transform: translateY(0);
}

.pk-modal__close{
  position: absolute;
  top: 10px;
  right: 12px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(0,0,0,.45);
  color: rgba(255,255,255,.85);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

.pk-modal__close:focus-visible{
  outline: none;
  box-shadow: 0 0 0 3px rgba(221,153,51,.35);
  border-color: rgba(221,153,51,.45);
}

/* Mobile : plein écran quasi total + bouton mieux accessible */
@media (max-width: 720px){
  .pk-modal__panel{
    width: 96vw;
    height: 92vh;
    margin: 4vh auto;
    border-radius: 16px;
  }
  .pk-modal__close{
    top: 10px;
    right: 10px;
    width: 44px;
    height: 44px;
  }
}

/* Safe-area iOS */
@supports (padding: max(0px)){
  .pk-modal__panel{
    margin-top: max(2.5vh, env(safe-area-inset-top));
    margin-bottom: max(2.5vh, env(safe-area-inset-bottom));
  }
}

.pk-modal__frame{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: #0b0b0b;
}

/* Pack Zen modal: show when not hidden */
.pk-modal { display: block; }              /* état normal */
.pk-modal[hidden] { display: none; }       /* état fermé */


/* lock scroll helper */
body.pk-modalOpen{ overflow: hidden; }

/* =========================
   NEWS — ARTICLE LAYOUT (4/5 + 1/5)
   WHY: tu n’avais qu’une grille 2/5 + 1/5 + 1/5 + 1/5
   ========================= */

.pk-news-article-wrap{
  background: #202020;
  padding: 44px 0 84px;
}

.pk-news-layout{
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 18px;

  display: grid;
  grid-template-columns: 4fr 1fr;
  gap: 26px;
  align-items: start;
}

@media (max-width: 960px){
  .pk-news-layout{
    grid-template-columns: 1fr;
  }
}

h2.pk-section-news-title {
    text-transform: uppercase;
    font-size: 28px;
    background: #101010;
    padding-left: 12px;
    border-radius: 4px;
    border: 1px solid #404040;
}

.pk-news-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    opacity: .85;
    font-size: .95rem;
    margin: 10px 0 18px;
    justify-content: center;
}

.pk-news-badge{
  background: #dd9933;
  color: #000;
  padding: 2px 10px;
  border-radius: 999px;
  font-weight: 800;
}

.pk-news-content p, ul {
    font-family: 'system-ui';
}

.pk-news-content{
  border: 1px solid #404040;
  border-radius: 14px;
  background: rgba(0,0,0,.25);
  padding: 18px;
}

.pk-news-aside{
  border: 1px solid #404040;
  border-radius: 14px;
  background: rgba(0,0,0,.25);
  padding: 16px;
  position: sticky;
  top: 88px;
}

@media (max-width: 960px){
  .pk-news-aside{ position: static; }
}

.pk-news-aside h3 {
    margin: 0 0 12px;
    text-transform: uppercase;
}

.pk-news-list-mini{
  list-style: none;
  padding: 0;
  margin: 0;
}

.pk-news-list-mini li{
  border-top: 1px solid #404040;
  padding: 10px 0;
}

.pk-news-list-mini li:first-child{
  border-top: 0;
  padding-top: 0;
}

.pk-news-mini-date{
  display: block;
  opacity: .75;
  font-size: .85rem;
  margin-bottom: 4px;
}

.page-news-single a{
  color: #dd9933;
  text-decoration: underline;
  text-decoration-color: rgba(221,153,51,.45);
  text-underline-offset: 3px;
}

.page-news-single a:hover{
  text-decoration-color: rgba(221,153,51,.95);
}

.page-news-single a.pk-btn{
  color: inherit;
  text-decoration: none;
}

.page-news-single .attract {
    background: var(--color-accent);
    padding: 18px;
    border-radius: 6px;
    font-size: 1.2rem;
    color: #000;
    font-weight: 600;
    text-align: center;
}

/* =========================
   NEWS — LISTING (news.html)
   ========================= */

.section-title-news {
    padding: 44px;
    text-align: center;
}

.pk-news-list{
  background: #202020;
  padding: 44px 0 84px;
}

.pk-news-card {
    border: 1px solid #404040;
    border-radius: 14px;
    overflow: hidden;
    background: rgba(0, 0, 0, .25);
    margin: 0 0 22px;
    font-family: 'system-ui';
    box-shadow: 0px 0px 12px #000;
}

.pk-news-card__link{
  display: block;
  color: inherit;
  text-decoration: none;
}

.pk-news-card__media{
  position: relative;
  aspect-ratio: 16 / 5;
  background: #101010;
}

.pk-news-card__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.05) contrast(1.05);
}

.pk-news-card__overlay{
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  background: linear-gradient(to top, rgba(0,0,0,.75), rgba(0,0,0,0));
}

.pk-news-card__title {
    margin: auto;
    font-size: 1.55rem;
    line-height: 1.15;
    text-transform: uppercase;
    font-family: 'Raleway';
    text-shadow: 0px 0px 4px #000;
    text-shadow: 0px 0px 8px #000;
    background: rgba(0, 0, 0, 0.6);
    padding: 12px 28px;
    border-radius: 6px;
    border: 1px solid #b2b2b2;
}

.pk-news-card__meta{
  padding: 14px 18px 0;
  font-size: .95rem;
  opacity: .85;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pk-news-tag{
  background: #dd9933;
  color: #000;
  padding: 2px 10px;
  border-radius: 999px;
  font-weight: 800;
}

.pk-news-card__excerpt{
  padding: 10px 18px 18px;
  margin: 0;
  opacity: .9;
}

.section-title-news .page-title{
  font-size: 42px;
  line-height: 1.1;
}

@media (max-width: 767px){
  .section-title-news .page-title{
    font-size: 32px;
  }
}

/* =========================
   NAV — badge News
   ========================= */
.pk-nav-news{
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.pk-nav-badge {
    position: absolute;
    top: -10px;
    right: 4px;
    min-width: 22px;
    height: 22px;
    padding: 6px;
    border-radius: 4px;
    background: #dd9933;
    color: #000;
    font-weight: 100;
    font-size: 20px;
    line-height: 12px;
    text-align: center;
}

/* Option: sur mobile, éviter la surcharge visuelle */
@media (max-width: 767px){
  .pk-nav-badge{ display:none; }
}

/* parent image/card doit être relative */
.pk-newsMedia{
  position: relative;
}

/* triangle */
.pk-newsCorner{
  position: absolute;
  top: 0;
  right: 0;
  width: 84px;
  height: 84px;
  z-index: 3;
  pointer-events: none; /* ne gêne pas le clic */
}

/* le triangle orange */
.pk-newsCorner::before{
  content: "";
  position: absolute;
  inset: 0;
  background: #dd9933;
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  border-top-right-radius: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
}

/* texte */
.pk-newsCorner__txt{
  position: absolute;
  top: 16px;
  right: 12px;

  font-family: "Bebas Neue", sans-serif;
  font-size: 1.15rem;
  letter-spacing: .08em;

  color: #000;
  transform: rotate(45deg);
  transform-origin: center;
}

.pk-newsCorner::after{
  content: "";
  position: absolute;
  inset: 0;
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  border: 1px solid rgba(0,0,0,.25);
  border-top-right-radius: 14px;
  pointer-events: none;
}

/* =========================
   SHARE (News)
   ========================= */
.pk-share{
  margin: 22px 0;
  padding: 16px;
  background: rgba(0,0,0,.25);
  border: 1px solid #404040;
  border-radius: 12px;
}

.pk-share__title{
  margin: 0 0 10px;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #fff;
  font-size: 1.05rem;
}

.pk-share__row{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.pk-share__btn {
    appearance: none;
    border: 1px solid rgba(221, 153, 51, .28);
    background: rgba(0, 0, 0, .25);
    color: rgba(255, 255, 255, .88);
    padding: 10px 12px;
    border-radius: 0px;
    text-decoration: none;
    cursor: pointer;
    line-height: 1;
    font-size: .95rem;
    transition: transform .15s ease, border-color .15s ease, color .15s ease, background .15s ease;
    width: 100%;
}

.pk-share__btn:hover{
  transform: translateY(-1px);
  border-color: rgba(221,153,51,.65);
  color: #dd9933;
  background: rgba(0,0,0,.35);
}

.pk-share__btn:focus-visible{
  outline: 2px solid rgba(221,153,51,.55);
  outline-offset: 3px;
}

.pk-share__hint{
  margin: 10px 0 0;
  font-size: .92rem;
  color: rgba(255,255,255,.75);
  min-height: 1.2em;
}

.pk-404{
  background:#000;
  border-top:1px solid #303030;
  border-bottom:1px solid #303030;
  padding:5rem 0;
}

.pk-404__wrap{
  max-width:1400px;
  margin:0 auto;
  padding:0 2rem;
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:3rem;
  align-items:center;
}

.pk-404__code{
  font-family:'Bebas Neue';
  font-size: clamp(6rem, 14vw, 16rem);
  letter-spacing:.08em;
  line-height:.85;
  color:#dd9933;
  margin:0;
}

.pk-404__lead{
  margin: 1rem 0 1.5rem;
  font-family:'Bebas Neue';
  letter-spacing:.18em;
  font-size:1.15rem;
  color:#bbb;
}

.pk-404__links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: end;
}

.pk-404__text {
    text-align: end;
}

/* image */
.pk-404__img img{
  width:218px;
  height:auto;
  max-width:218px;
  display:block;
  filter: drop-shadow(0 18px 40px rgba(0,0,0,.75));
}

/* mobile */
@media (max-width: 900px){
  .pk-404__wrap{
    grid-template-columns: 1fr;
    text-align:center;
  }
  .pk-404__img img{
    margin: 0 auto;
    max-width: 420px;
  }
  .pk-404__links{
    justify-content:center;
  }
}

/* ============================================================
   SHOOTING — Reines du Monde (PK2026)
   - Cards + CTA
   - Modal (apply)
   ============================================================ */

/* Section */
#shooting-section .page-title{
  letter-spacing:.06em;
  text-transform:uppercase;
}
#shooting-section .lead-p{
  max-width: 72ch;
  line-height: 1.55;
  color: rgba(255,255,255,.86);
}

/* Grid */
.team-section .grid-main{
  display:block;
}
.team-section .cards{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}
@media (max-width: 1024px){
  .team-section .cards{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 620px){
  .team-section .cards{ grid-template-columns: 1fr; }
}

/* Card */
.pk-model-card {
    position: relative;
    background: rgba(0, 0, 0, .35);
    border: 1px solid rgba(255, 255, 255, .20);
    border-radius: 8px;
    padding: 16px 16px 14px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .35);
}
.pk-model-card::before{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(800px 400px at 20% 0%, rgba(221,153,51,.12), transparent 55%);
  pointer-events:none;
}
.pk-model-title{
  font-family: "Bebas Neue", system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 1.8rem;
  line-height: 1.05;
  margin: 0 0 10px 0;
}
.pk-model-info{
  list-style:none;
  margin: 0 0 14px 0;
  padding: 0;
  display:grid;
  gap: 6px;
  color: rgba(255,255,255,.82);
}
.pk-model-info li span{
  color: rgba(255,255,255,.58);
  display:inline-block;
  min-width: 82px;
}

/* CTA */
.pk-model-contact {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    width: 100%;
    padding: 12px 12px;
    border-radius: 12px;
    text-decoration: none;
    border: 1px solid rgba(221, 153, 51, .95);
    background: #dd9933;
    color: #fff;
    transition: transform .18s ease, background .18s ease, border-color .18s ease;
    text-transform: uppercase;
}
.pk-model-contact .pk-icon{
  width: 18px;
  height: 18px;
  opacity:.95;
}
.pk-model-contact:hover{
  transform: translateY(-1px);
  background: rgba(221,153,51,.16);
  border-color: rgba(221,153,51,.55);
}
.pk-model-contact:focus-visible{
  outline: 2px solid rgba(221,153,51,.9);
  outline-offset: 2px;
}

/* ============================================================
   MODAL — Apply (PK)  ✅ SCOPÉE sur #pkApplyModal
   WHY: ne doit JAMAIS impacter #pkZenModal
   ============================================================ */

/* état fermé */
#pkApplyModal.pk-modal{ display:none; }

/* état ouvert (ton JS met aria-hidden="false") */
#pkApplyModal.pk-modal[aria-hidden="false"]{ display:block; }

/* le reste peut rester identique mais en scoping aussi (recommandé) */
#pkApplyModal .pk-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .6);
    backdrop-filter: blur(3px);
}

#pkApplyModal .pk-modal__panel {
    position: relative;
    width: min(820px, calc(100% - 24px));
    margin: 6vh auto;
    background: rgba(10, 10, 10, 98);
    border: 1px solid rgba(80, 80, 80, 10);
    border-radius: 16px;
    padding: 44px;
    color: #fff;
    box-shadow: 0 22px 70px rgba(0, 0, 0, 55);
}

/* etc… si tu veux, scope aussi close/title/form pareil */

.pk-modal__close{
  position:absolute;
  top: 10px;
  right: 10px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  color:#fff;
  font-size: 26px;
  line-height: 1;
  cursor:pointer;
}
.pk-modal__close:hover{
  background: rgba(255,255,255,.07);
}

.pk-modal__title{
  margin: 0 48px 14px 0;
  font-family: "Bebas Neue", system-ui, sans-serif;
  letter-spacing: .10em;
  text-transform: uppercase;
  font-size: 1.65rem;
}
.pk-modal__title .orange{ color:#dd9933; }

/* Form */
.pk-form__grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
}
.pk-field--full{ grid-column: 1 / -1; }

.pk-field__label{
  display:block;
  color: rgba(255,255,255,.72);
  font-size: .92rem;
  margin-bottom: 6px;
}
.pk-field__input{
  width:100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.35);
  color:#fff;
}
.pk-field__input:focus{
  outline:none;
  border-color: rgba(221,153,51,.55);
  box-shadow: 0 0 0 3px rgba(221,153,51,.20);
}
.pk-field__hint{
  display:block;
  margin-top: 6px;
  font-size: .86rem;
  color: rgba(255,255,255,.55);
}

.pk-form__actions{
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
  align-items:center;
  margin-top: 14px;
}

/* Buttons */
.pk-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.5rem;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color:#fff;
  cursor:pointer;
}
.pk-btn:hover{ background: rgba(255,255,255,.08); }
.pk-btn--cta{
  background:#dd9933;
  color:#000;
  border-color: rgba(221,153,51,.70);
  font-weight: 800;
}
.pk-btn--cta:hover{ filter: brightness(1.03); }
.pk-btn--ghost{
  background: transparent;
}

.pk-form__note{
  margin: 12px 0 0 0;
  min-height: 1.25em;
  color: rgba(255,255,255,.75);
}

@media (max-width: 640px){
  .pk-form__grid{ grid-template-columns: 1fr; }
  .pk-modal__panel{ margin: 4vh auto; padding: 16px; }
}

/* =========================
   PK LINKS (global reset)
========================= */

a {
  color: inherit;
  text-decoration: none;
  transition: color .25s ease, opacity .25s ease;
}

/* =========================
   CONTEXT LINKS (dans <p>)
========================= */

p a {
  color: #dd9933;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

p a:hover {
  opacity: .75;
}

/* =========================
   DARK BACKGROUND
========================= */

.pk-dark p a,
.dark p a {
  color: #dd9933;
}

/* =========================
   LIGHT / YELLOW BACKGROUND
========================= */

.pk-light p a,
.pk-strip p a {
  color: #111;
  text-decoration: underline;
}

/* hover sur fond clair */
.pk-light p a:hover,
.pk-strip p a:hover {
  opacity: .65;
}

p a {
  position: relative;
}

p a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(.6);
  transition: transform .25s ease;
}

p a:hover::after {
  transform: scaleX(1);
}

/* =========================
   DEFAULT (fond sombre)
========================= */

p a {
  color: #dd9933;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: opacity .25s ease;
}

p a:hover {
  opacity: .75;
}


/* =========================
   FOND CLAIR / JAUNE
========================= */

.pk-strip p a,
.pk-light p a {
  color: #111;
}


/* =========================
   CAS SPÉCIFIQUE HERO / DARK
========================= */

.pk-hero p a,
.section-dark p a {
  color: #dd9933;
}

/* =========================
   FIX LIENS SUR FOND ORANGE
========================= */

.pk-strip,
.pk-strip p,
.pk-strip a {
  color: #111;
}

.pk-strip p a {
  color: #111;
}

.pk-strip p a:hover {
  opacity: .7;
}

/* context clair */
[class*="light"],
.pk-strip {
  color: #111;
}

[class*="light"] a,
.pk-strip a {
  color: #111;
}

/* =========================================
   PK: Context links (default = orange)
========================================= */
p a {
  color: var(--pk-accent, #dd9933);
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: opacity .25s ease, color .25s ease;
}
p a:hover { opacity: .75; }

/* =========================================
   PK: Links on ORANGE / light blocks
   (override p a rule)
========================================= */
.pk-strip p a,
.pk-strip__item p a,
.pk-strip__sub a,
.pk-strip__title a,
.startup-section .pk-namur-col-text p a,
.pk-namur-col-text p a {
  color: #111;
  text-decoration-color: currentColor;
}

.pk-strip p a:hover,
.startup-section .pk-namur-col-text p a:hover,
.pk-namur-col-text p a:hover {
  opacity: .7;
}

.pk-related-section {
  padding: 2rem 0;
}

.pk-related-text {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  opacity: .9;
}

.pk-news-lead{
display:grid;
grid-template-columns:1fr 1fr;
gap:28px;
align-items:start;
margin-bottom:18px;
}

.pk-news-lead__media img{
display:block;
width:100%;
height:auto;
aspect-ratio:1/1;
object-fit:cover;
border-radius:10px;
border:1px solid rgba(255,255,255,.12);
}

@media (max-width:980px){
.pk-news-lead{
grid-template-columns:1fr;
}
}



