﻿/* layout.css */
/* Structure globale */
:root{
  --pk-font-title: "Raleway", sans-serif;
  --pk-font-body: Arial, Helvetica, sans-serif;
  --pk-font-display: "Bebas Neue", sans-serif;
}

body{ 
  font-family: var(--pk-font-body);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--color-text);
  background-color: var(--color-bg);
 }

h1,h2,h3,h4,h5,h6{ font-family: var(--pk-font-title); }

.pk-badge,
.pk-price,
.pk-sector__label,
.pk-kicker,
.pk-eyebrow{
  font-family: var(--pk-font-display);
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* Container générique moderne (on gardera aussi .container tant qu'il y a du Bootstrap) */
.container {
    max-width: 1280px;
    margin: 0 auto;
}
.pk-container {
  max-width: 1280px;
  margin: 0 auto;

}

:root{ --pk-tiles-h: 118px; }

@media (min-width: 1024px){
  .pk-hero-heading{
    transform: translateY(calc(-0.8 * var(--pk-tiles-h)));
  }
}

@media (min-width: 1024px){
  .pk-strip__item{ height: 118px; } /* ou 110/130 */
}

/* Bloquer le scroll quand la nav mobile est ouverte */
body.pk-nav-open {
  overflow: hidden;
}

/* Désactivation complète du Ken Burns sur mobile
   (évite que s2.avif devienne LCP) */
@media (max-width: 767px) {

  /* 1. Conteneurs typiques du slideshow / Ken Burns */
  #slideshow,
  .kenburns,
  .kenburns-wrapper,
  .kenburns-slide {
    display: none !important;
  }
}

.orange {
  color: #dd9933;
  fill:#dd9933;
}

.orange-square {
    color: #dd9933 !important;
    font-size: 28px;
    padding-right: 12px;
}

.around-title {
    text-align: center;
}

.pk-btn--dark {
    background: #000;
    border-radius: 6px;
    font-family: 'Bebas Neue';
    font-weight: 100;
    font-size: 22px;
    padding: 0px 28px 0px 28px;
    line-height: 3rem;
}

.pk-title-intro a {
    color: #dd9933;
    text-decoration: none;
}

/* ======================= */
/* HEADER                  */
/* ======================= */

/* Sticky header (global override) */
#header.header-section{
  position: sticky;
  top: 0;
  z-index: 9999;
}

body.page-portfolio #header.header-section,
body.page-contact  #header.header-section,
body.page-shooting #header.header-section{
  position: sticky !important;
  top: 0;
  z-index: 9999;
}


.sticky-navigation{
  top: 0;
  z-index: 30;
  background: #000;
  border-bottom: 1px solid #303030;
}

/* MOBILE: garde ton comportement actuel */
@media (max-width: 960px){
  .sticky-navigation{
    position: relative;
  }
}

/* DESKTOP: navbar collée en haut */
@media (min-width: 961px){
  #sticky-navigation.sticky-navigation{
    position: sticky;
    top: 0;
    z-index: 9999;
  }
}

.pk-header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  height: 80px;
  display: flex;
  align-items: center;
}

/* LOGO */
.site-logo {
  display: flex;
  align-items: center;
}

.site-logo img {
  display: block;
  height: 52px;
  width: auto;
}

/* ======================= */
/* NAVIGATION GLOBALE     */
/* ======================= */

/* Container nav */
.pk-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/* Liste principale */
.pk-nav-list,
.pk-nav > ul.nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0rem;
}

/* Items */
.pk-nav-list > li,
.pk-nav > ul.nav > li {
  position: relative;
}

/* Liens top-level */
.pk-nav-list > li > a,
.pk-nav > ul.nav > li > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding-block: 0.75rem;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  font-family: "Bebas Neue", system-ui, sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.14em;
  font-weight: 200;
  transition:
    color 0.18s ease,
    opacity 0.18s ease;
}

/* Upperline animé par lien */
.pk-nav-list > li > a::before,
.pk-nav > ul.nav > li > a::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  width: 70%;
  height: 2px;
  background: var(--color-accent, #dd9933);
  border-radius: 999px;
  transition: transform 0.18s ease-out;
}

/* Hover / focus / actif */
.pk-nav-list > li > a:hover,
.pk-nav > ul.nav > li > a:hover,
.pk-nav-list > li:hover > a,
.pk-nav > ul.nav > li:hover > a,
.pk-nav-list > li:focus-within > a,
.pk-nav > ul.nav > li:focus-within > a {
  color: #dd9933;
}

.pk-nav-list > li:hover > a::before,
.pk-nav > ul.nav > li:hover > a::before,
.pk-nav-list > li:focus-within > a::before,
.pk-nav > ul.nav > li:focus-within > a::before {
  transform: translateX(-50%) scaleX(1);
}

/* Icône home dans la nav */
.pk-nav .pk-icon {
  width: 22px;
  height: 22px;
  fill: #fff;
}

/* Langues */
.pk-nav .lank {
  display: flex;
  list-style: none;
  margin: 0 0 0 1.5rem;
  padding: 0;
  gap: 0.75rem;
}

.pk-nav .lank a {
    font-size: 1rem;
    text-align: center;
}

.pk-nav .lank a:hover {
    color: #dd9933;
    text-shadow: 0px 0px 6px #dd9933;
}

.langnl {
  padding: 4px;
  border: 1px solid #404040;
  width: 2.3rem;
  display: inline-flex;
  justify-content: center;
  background-color: rgba(32, 32, 32);
}

.customer .pk-icon {
    width: 34px;
    height: 34px;
    margin: auto;
    padding: 6px;
    fill: #fff;
}

.customer .pk-icon:hover {
     fill:#dd9933;
 }

/* Le UL du menu */
.pk-nav ul.nav {
  position: relative;
}

/* Liens : pas de bordure qui change la hauteur */
.pk-nav ul.nav > li > a {
  position: relative;
  display: inline-block;
  padding: 0.75rem 1.2rem;
  border: 0;
  text-decoration: none;
  transition: color 200ms ease;
}

/* On évite les bordures parasites */
.pk-nav ul.nav > li > a,
.pk-nav ul.nav > li > a:hover,
.pk-nav ul.nav > li.active > a {
  border-top: none;
  border-bottom: none;
}

/* Laser upperline par lien, via ::before */
.pk-nav ul.nav > li > a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;                     /* en haut du lien */
  width: 100%;
  height: 2px;
  background: #dd9933;
  transform: scaleX(0);       /* invisible au repos */
  transform-origin: left;     /* part du côté gauche */
  transition: transform 260ms ease;
}

/* Hover + active : le laser se déploie */
.pk-nav ul.nav > li > a:hover::before,
.pk-nav ul.nav > li.active > a::before {
  transform: scaleX(1);
}

/* Optionnel : couleur texte au hover/actif */
.pk-nav ul.nav > li > a:hover,
.pk-nav ul.nav > li.active > a {
  color: #dd9933;
}

/* ======================= */
/* BURGER                  */
/* ======================= */

.pk-burger {
  border: 0;
  background: transparent;
  padding: 0;
  margin-left: 16px;
  margin-right: 0;
  width: 30px;
  height: 22px;
  display: none;            /* visible seulement en mobile */
  flex-shrink: 0;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 40;
}

.pk-burger-bar {
  display: block;
  height: 4px;
  width: 100%;
  background: #ffffff;
  border-radius: 2px;
  transition: transform 160ms ease, opacity 160ms ease;
}

/* Burger → CROIX quand le menu est ouvert */
body.pk-nav-open #navToggle .pk-burger-bar:nth-child(1) {
  transform-origin: left center;
  transform: rotate(35deg) translateY(-1px);
}

body.pk-nav-open #navToggle .pk-burger-bar:nth-child(2) {
  opacity: 0;
}

body.pk-nav-open #navToggle .pk-burger-bar:nth-child(3) {
  transform-origin: left center;
  transform: rotate(-35deg) translateY(1px);
}

/* ============================ */
/* NAV + SOUS-MENU – DESKTOP   */
/* ============================ */

/* ======================================================
   PK NAVIGATION PREMIUM 2025 – FIX HOVER
   Sous-menu cliquable + caret ▼
   ====================================================== */

@media (min-width: 961px) {

  /* Parent */
  .pk-nav .menu-item-has-children {
    position: relative;
  }

  /* Ajout du caret ▼ automatiquement */
  .pk-nav .menu-item-has-children > a {
    position: relative;
    padding-right: 1.4rem; /* espace pour la flèche */
  }

  .pk-nav .menu-item-has-children > a::after {
    content: "▼";
    font-size: 0.55rem;
    color: var(--color-accent, #dd9933);
    position: absolute;
    right: 0.25rem;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.25s ease, opacity 0.25s ease;
    opacity: 0.75;
  }

  /* Rotation du caret au hover */
  .pk-nav .menu-item-has-children:hover > a::after,
  .pk-nav .menu-item-has-children:focus-within > a::after {
    transform: translateY(-50%) rotate(180deg);
    opacity: 1;
  }

  /* -------- Sous-menu : collé sous Services, sans trou -------- */

  .pk-nav .sub-menu {
    position: absolute;
    top: 100%;          /* juste sous le li, pas de gap */
    left: 0;

    min-width: 230px;
    padding: 0.75rem 0;
    margin: 0;

    list-style: none;
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 6px;

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    box-shadow:
      0 12px 30px rgba(0,0,0,0.55),
      0 0 0 1px rgba(255,255,255,0.04) inset;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translateY(0);   /* plus de slide qui crée un trou */
    z-index: 9999;
    transition: opacity 0.2s ease, visibility 0.2s ease;
  }

  /* Sous-menu visible : le <li> complet sert de zone hover */
  .pk-nav .menu-item-has-children:hover > .sub-menu,
  .pk-nav .menu-item-has-children:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  /* Liens du sous-menu */
  .pk-nav .sub-menu li a {
        display: block;
        padding: 0.55rem 1.2rem;
        font-size: 1.1rem;
        white-space: nowrap;
        color: #f5f5f5;
        transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
        font-family: 'Bebas Neue';
        text-decoration: none;
        letter-spacing: 0.1rem;
}

.pk-nav .sub-menu li a:hover {
  background: rgba(221,153,51,0.15);
  color: var(--color-accent, #dd9933);
  transform: translateY(2px);
}

}

/* ============================ */
/* NAV + BURGER – MOBILE       */
/* ============================ */

@media (max-width: 960px) {

  .pk-header-inner {
    height: 72px;
  }

  .site-logo img {
    height: 40px;
  }

  /* NAV MOBILE – overlay plein écran */
  .pk-nav {
    position: fixed;
    inset: 0;
    height: 100vh;
    padding: 5rem 2rem 2rem;
    background: rgba(0, 0, 0, 0.96);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition:
      transform 0.25s ease,
      opacity 0.25s ease;
    z-index: 999;
  }

  /* Nav visible quand <body> possède .pk-nav-open */
  body.pk-nav-open .pk-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  /* Liste principale */
  .pk-nav > ul.nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    text-align: center;
  }

  .pk-nav > ul.nav > li {
    margin: 0;
  }

  /* Lien principal */
  .pk-nav > ul.nav > li > a {
    display: block;
    padding: 12px 0;
    color: #fff;
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-bottom: 1px solid #333;
  }

  /* Désactiver l’upperline en mobile pour alléger */
  .pk-nav-list > li > a::before,
  .pk-nav > ul.nav > li > a::before {
    display: none;
  }

  /* Lien parent "Services" (accordéon) */
  .pk-nav .menu-item-has-children > a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
  }

  .pk-nav .menu-item-has-children > a::after {
    content: "▾";
    font-size: 0.9rem;
    color: #dd9933;
    transition: transform 0.25s ease;
    position: static;
    opacity: 1;
  }

  .pk-nav .menu-item-has-children.is-open > a::after {
    transform: rotate(180deg);
  }

  /* Sous-menu : accordéon */
  .pk-nav .sub-menu {
    position: static;
    margin: 0.15rem 0 0.4rem 0;
    padding: 0;
    list-style: none;
    border: 0;
    background: transparent;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }

  .pk-nav .menu-item-has-children.is-open > .sub-menu {
    max-height: 600px; /* assez pour contenir les liens */
  }

  .pk-nav .sub-menu li a {
    display: block;
    width: 100%;
    margin: 0 auto;
    padding: 8px 10px;
    background: rgba(0, 0, 0, 0.9);
    border-radius: 6px;
    border-bottom: 1px solid #333;

    font-family: "Bebas Neue", sans-serif;
    font-size: 1rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-align: center;
    color: #ddd;
    text-decoration: none;
  }

  .pk-nav .sub-menu li:last-child a {
    border-bottom: none;
  }

  .pk-nav .sub-menu a:hover {
    color: #fff;
  }

  /* Langues en bas de l’overlay */
  .pk-nav .lank {
    margin-top: 2rem;
    justify-content: center;
  }

  /* Burger visible en mobile */
  .pk-burger {
    display: flex;
    border: 0;
    background: transparent;
    padding: 0;
    margin-left: auto;
    margin-right: 6px;
    width: 30px;
    height: 22px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;

    position: relative;
    top: auto;
    right: auto;
    z-index: 1001;
  }

  /* Burger déplacé en haut à droite quand le menu est ouvert */
  body.pk-nav-open .pk-burger {
    position: fixed;
    top: 16px;
    right: 18px;
    margin: 0;
  }
}

/* ======================================================== */
/* HERO – layout moderne                                    */
/* ======================================================== */

.pk-hero {
  position: relative;
  min-height: 80vh;
  color: var(--color-text);
}

/* image pleine largeur en fond */
.pk-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.pk-hero-media picture,
.pk-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* bloc central */
.hero-inner {
  position: relative;
  z-index: 3;
  max-width: 1140px;
  margin: 0 auto;
  padding-inline: var(--space-4);
  padding-block: var(--space-7);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
}

/* responsive */
@media (max-width: 768px) {
  .hero-inner {
    padding-block: var(--space-6);
    align-items: flex-start;
  }
}

/* Titre HERO */

.pk-hero-heading {
  text-align: center;
}

/* HERO centré verticalement sur desktop */
@media (min-width: 1024px) {
  .pk-hero-heading {
    position: relative;
    z-index: 10;
    min-height: 84vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 5vh;
    padding-bottom: 10vh;
  }
}

.pk-hero-title {
    margin: 0;
    font-family: "Raleway", system-ui, sans-serif;
    font-size: clamp(1.6rem, 4vw, 1.4rem);
    text-transform: uppercase;
    font-weight: 500;
}

.pk-hero-pixel {
  font-family: "Raleway", system-ui, sans-serif;
  color: #dd9933;
}

.pk-hero-komando {
  font-family: "Raleway", system-ui, sans-serif;
  color: #ffffff;
}

span.pk-hero-brand {
    font-size: 4rem;
}

.pk-hero-title-divider {
  position: relative;
  width: 140px;
  height: 3px;
  margin: 0.5rem auto 0.75rem;
  background: #ffffff;
  text-shadow: 0px 0px 8px #000;
}

.pk-hero-photo {
  margin: 0;
  font-family: "Raleway", system-ui, sans-serif;
  font-size: clamp(2.4rem, 3.6vw, 1.4rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
  color: #ffffff;
  position: relative;
  margin-bottom: 44px;
}

.pk-hero-tagline {
  position: relative;
  display: grid;
  margin-top: 1.2rem;
  padding: 0.95rem 2.8rem;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 9px;
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 200;
  text-align: center;
  justify-self: center;
  font-family: "Bebas Neue";
  letter-spacing: 0.18rem;
  border: 1px solid #404040;
}

.pk-hero-sectors a {
  color: #ffffff;
  font-weight: 100;
  text-decoration:none;
}

h1.page-title{
  font-family: "Raleway", sans-serif;
  font-size: 64px;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 0em !important;
  margin: 0 auto 40px;
  position: relative;
  display: block;
  width: 100%;
  text-align: center;
}


ul.lank a {
    color: #b2b2b2;
    font-weight: 200;
    text-decoration: none;
    border: 1px solid #404040;
    padding: 6px;
    width: 34px;
    height: 34px;
    font-family: 'Bebas Neue';
}

/* CLS fix: stabilité du hero heading */
.pk-hero-heading{
  /* base stable */
  min-height: 320px;
}

/* Desktop: garder l’effet “grand hero” mais avec unités stables */
@media (min-width:1024px){
  .pk-hero-heading{
    /* au lieu de 84vh, utilise svh/dvh avec fallback */
    min-height: 84vh;      /* fallback */
    min-height: 84svh;     /* stable viewport height (évite les sauts UI) */
    padding-top: 0;        /* évite padding vh qui bouge */
    padding-bottom: 0;
  }
}

.pk-cookie-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 420px;
    background: #101010;
    color: #fff;
    padding: 24px;
    border-radius: 0px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    z-index: 9999;
    font-size: 14px;
}

.pk-cookie-banner a {
  color: #dd9933;
}

.pk-cookie-actions {
  margin-top: 10px;
  display: flex;
  gap: 8px;
}


/* ======================= */
/* SECTION ABOUT           */
/* ======================= */

.pk-about-wrapper {
  background: #000;
  border: 1px solid #404040;
  padding: 3rem 2.5rem;
  border-radius: 0;
  position: relative;
  margin: 2.5rem auto;
  max-width: 1280px;
}

.pk-about-content {
  max-width: 960px;
  margin: 0 auto;
}

.pk-about-body {
    margin-top: 1.5rem;
    display: grid;
    gap: 0;
    color: #ddd;
    line-height: 1.6;
}

.pk-about-checklist{
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: grid;
  gap: 10px;
}

.pk-about-split {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    margin-top: 24px;
    padding: 28px 68px;
    border: 1px solid #404040;
    background: #0a0a0a;
    border-radius:8px;
}

.pk-about-left {
  flex: 1 1 50%;
}

.pk-about-right {
  flex: 0 0 460px;
  display: flex;
  flex-direction: row;
  gap: 44px;
}

.pk-about-photo {
  display: block;
  border: 1px solid #2a2a2a;
  border-radius: 6px;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}

.pk-about-photo img {
  display: block;
  width: 100%;
  height: auto;
}

.pk-about-photo:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}

@media (max-width: 900px) {
  .pk-about-split {
    flex-direction: column;
  }

  .pk-about-right {
    flex-direction: row;
    gap: 16px;
  }

  .pk-about-photo {
    flex: 1;
  }
}

@media (max-width: 540px) {
  .pk-about-right {
    flex-direction: column;
  }
}


.pk-about-checklist li{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.45;
}

.pk-li-check{
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  margin-top: .15em;
  fill: #dd9933;
}
.about-us-section {
  background: #101010;
  border-top: 1px solid #303030;
  border-bottom: 1px solid #303030;
  border-radius: 0;
  padding: 3rem 0;
}

.pk-about-body p b {
  color: #fff;
}

.pk-about-body a {
  text-decoration: underline;
  text-underline-offset: 3px;
  color: #dd9933;
}

/* ======================= */
/* TESTIMONIALS            */
/* ======================= */

.pk-testimonials-wrapper {
  background: #000;
  border: 1px solid #404040;
  max-width: 1280px;
  margin: 2.5rem auto 0;
  padding: 2.5rem 2.5rem 3rem;
  text-align: center;
  position: relative;
}

.pk-testimonials {
  display: grid;
  gap: 1.5rem;
  margin: 2rem auto 0;
}

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

.pk-testimonial {
  background: radial-gradient(circle at top left, #222 0, #111 60%);
  border-radius: 1.25rem;
  padding: 1.5rem 1.4rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.6);
  text-align: left;
  position: relative;
  overflow: hidden;
  text-align:center;
}

.pk-testimonial::before {
  content: "“";
  position: absolute;
  font-size: 3rem;
  opacity: 0.04;
  top: 0.3rem;
  right: 1rem;
}

.pk-stars {
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  color: #dd9933;
  margin-bottom: 0.6rem;
}

.pk-testimonial p {
  margin: 0 0 0.9rem;
  font-size: 0.95rem;
}

.pk-testimonial-avatar {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #333;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 600;
  margin-right: 0.5rem;
  overflow: hidden;
}

.pk-testimonial-avatar img.pk-testimonial-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pk-author {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* ======================= */
/* GOOGLE RATING           */
/* ======================= */

.pk-google-rating-wrapper {
  background: #000;
  border: 1px solid #404040;
  max-width: 1280px;
  margin: 2rem auto 0;
  padding: 2rem 2rem;
  position: relative;
  text-align: center;
}

.pk-google-rating {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.25rem;
}

.pk-google-logo {
  display: block;
}

.pk-google-stars {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
}

.pk-google-stars .pk-icon {
  width: 34px;
  height: 34px;
}

.pk-google-text {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 2.4rem;
}

@media (max-width: 600px) {
  .pk-google-rating-wrapper {
    padding-inline: 1.25rem;
  }

  .pk-google-rating {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* ======================= */
/* SECTION ME              */
/* ======================= */

#me {
  margin: 0;
  padding: 0;
  position: relative;
  background: url(/images/background-images/stratup-bg.avif) center/cover no-repeat fixed;
  overflow: hidden;
}

#me::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: #010101;
  pointer-events: none;
}

.pk-me-wrapper {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 3rem 2.5rem;
}

.pk-me-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 3rem;
  align-items: flex-start;
}

@media (max-width: 960px) {
  #me::before {
    width: 100%;
  }

  .pk-me-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.pk-me-text {
  padding: 2rem 2.5rem;
  color: #ddd;
  z-index: 3;
  position: relative;
}

.pk-me-title {
  font-size: 28px;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pk-dot {
  width: 14px;
  height: 14px;
  background: #dd9933;
  display: inline-block;
}

.pk-me-body {
  display: grid;
  gap: 1rem;
  line-height: 1.7;
  max-width: 56rem;
  width: 100%;
}

.pk-me-body p b {
  color: #fff;
}

.pk-me-image {
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  position: relative;
  z-index: 3;
}

.pk-me-image img.vince {
  border-radius: 1rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.pk-me-sub {
  display: grid;
  gap: 0.9rem;
  color: #ddd;
  line-height: 1.7;
}

.pk-me-sub p b {
  color: #fff;
}

/* =========================
   WORKFLOW — 6s timeline
   ========================= */

.pk-workflow{
  --dur: 4s;
  --bg: #101010;
  --card: #1a1a1a;
  --stroke: 4;
  --glow: 1.15;

  /* Flash tuning */
  --flash-ms: 240ms;            /* durée du flash (court = premium) */
  --flash-white: 0.92;          /* intensité du flash intérieur */
  --flash-orange: 0.95;         /* intensité glow orange */
  --flash-ring: rgba(221,153,51,.22);

  position: relative;
  padding: 80px 0;
  background: transparent;
  border-top: 1px solid #303030;
}

.pk-workflow__stage{
  position: relative;
  margin: 0 auto;
  max-width: 1200px;
  height: 260px;
}

/* Wrapper des boxes + svg (sans les icons) */
.pk-workflow-wrapper{
  position: absolute;
  top: 50%;
  transform: translate(-54px, -50%); /* ton offset OK + centrage vertical */
  z-index: 6;
}

/* =========================
   ICONS
   ========================= */

.pk-workflow__icon{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #eaeaea;
  opacity: .95;
  z-index: 7;
  will-change: transform;
}

.pk-workflow__icon--left{ left: 0; }
.pk-workflow__icon--right{ right: 0; }

.wf-icon{
  width: 56px;
  height: 56px;
  border-radius: 6px;
  background: #121212;
  border: 1px solid #303030;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.wf-icon-in{
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  fill:#fff;
}

/* Micro shake icon (subtle, premium) */
.pk-workflow__icon.is-shake{
  animation: wfIconShake 820ms cubic-bezier(.36,.07,.19,.97) both;
}

@keyframes wfIconShake{
  0%   { transform: translateY(-50%) translateX(0) rotate(0deg); }
  15%  { transform: translateY(-50%) translateX(-2px) rotate(-1deg); }
  30%  { transform: translateY(-50%) translateX(2px) rotate(1deg); }
  45%  { transform: translateY(-50%) translateX(-1px) rotate(-.6deg); }
  60%  { transform: translateY(-50%) translateX(1px) rotate(.6deg); }
  100% { transform: translateY(-50%) translateX(0) rotate(0deg); }
}

/* =========================
   BOXES
   ========================= */

.pk-workflow__box{
  position: absolute;
  top: 50%;
  width: 220px;
  height: 160px;

  transform-origin: 50% 50%;
  display: grid;
  place-items: center;

  background: rgba(0,0,0,.70);
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 8px;

  color: #fff;
  font: 600 18px/1.1 Raleway, system-ui, sans-serif;
  letter-spacing: .3px;

  z-index: 4;
  opacity: .55;
  filter: saturate(.92);

  will-change: transform, opacity, filter;
  transition:
    transform 700ms cubic-bezier(.2,.9,.2,1),
    opacity  400ms ease;
}

/* positions finales (alignées) */
.pk-workflow__box[data-step="1"]{ left: 200px; transform: translateY(-50%); }
.pk-workflow__box[data-step="2"]{ left: 430px; transform: translateY(-50%); }
.pk-workflow__box[data-step="3"]{ left: 660px; transform: translateY(-50%); }
.pk-workflow__box[data-step="4"]{ left: 890px; transform: translateY(-50%); }

/* état initial (idle) */
.pk-workflow.is-idle .pk-workflow__box[data-step="1"]{ transform: translateY(-64%) rotate(-10deg); }
.pk-workflow.is-idle .pk-workflow__box[data-step="2"]{ transform: translateY(-42%) rotate(8deg); }
.pk-workflow.is-idle .pk-workflow__box[data-step="3"]{ transform: translateY(-58%) rotate(-7deg); }
.pk-workflow.is-idle .pk-workflow__box[data-step="4"]{ transform: translateY(-40%) rotate(11deg); }

/* touched = position clean + opaque */
.pk-workflow__box.is-touched{
  opacity: 1;
  transform: translateY(-50%) rotate(0deg) skewX(0deg);
}

/* ===== Flash “réaliste” (intérieur blanc + glow) =====
   -> IMPORTANT : pas de gros box-shadow = plus d'ovale
   -> glow via drop-shadow (forme plus fidèle au rectangle)
*/

.pk-workflow__box::after{
  content:"";
  position:absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events:none;

  /* flash intérieur blanc bref (pas orange) */
  background: rgba(255,255,255,0);
  opacity: 0;
  transform: scale(1);
  will-change: opacity, transform;
}

/* anneau “flash” fin (rectangulaire) */
.pk-workflow__box::before{
  content:"";
  position:absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events:none;

  box-shadow: 0 0 0 0 rgba(221,153,51,0);
  opacity: 0;
  will-change: opacity, box-shadow;
}

.pk-workflow__box.is-flash{
  /* glow externe propre, sans ovale */
  filter:
    saturate(1.05)
    drop-shadow(0 0 10px rgba(221,153,51,var(--flash-orange)))
    drop-shadow(0 0 18px rgba(221,153,51,.55));
}

.pk-workflow__box.is-flash::after{
  animation: wfFlashFill var(--flash-ms) ease-out both;
}

.pk-workflow__box.is-flash::before{
  animation: wfFlashRing var(--flash-ms) ease-out both;
}

/* flash intérieur: pop blanc puis fade */
@keyframes wfFlashFill{
  0%   { opacity: 0; background: rgba(255,255,255,0); transform: scale(1); }
  18%  { opacity: 1; background: rgba(255,255,255,var(--flash-white)); transform: scale(1.01); }
  100% { opacity: 0; background: rgba(255,255,255,0); transform: scale(1); }
}

/* anneau fin: rapide, pas long */
@keyframes wfFlashRing{
  0%   { opacity: 0; box-shadow: 0 0 0 0 rgba(221,153,51,0); }
  18%  { opacity: 1; box-shadow: 0 0 0 2px var(--flash-ring); }
  100% { opacity: 0; box-shadow: 0 0 0 0 rgba(221,153,51,0); }
}

.pk-workflow__box span{ opacity: .95; }

/* =========================
   SVG overlay
   ========================= */

.pk-workflow__svg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

/* Lines */
.wf-line{
  fill: none;
  stroke-width: var(--stroke);
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: url(#wfGlow);
  opacity: 1;
}

/* RGB */
.wf-line--r{ stroke: #ff3b30; }
.wf-line--g{ stroke: #34c759; }
.wf-line--b{ stroke: #0a84ff; }

/* Wavy/straight */
.wf-line--wavy{ opacity: 1; }
.wf-line--straight{
  opacity: 0;
  filter: url(#wfGlow);
}

/* Draw animation (profil vitesse “boost -> stable -> frein tard”) */
.pk-workflow.is-running .wf-line--wavy{
  stroke-dasharray: var(--dash);
  stroke-dashoffset: var(--dash);
  animation: wfDraw var(--dur) linear forwards;
}

@keyframes wfDraw{
  0%   { stroke-dashoffset: var(--dash); }
  14%  { stroke-dashoffset: calc(var(--dash) * .74); }
  78%  { stroke-dashoffset: calc(var(--dash) * .12); }
  90%  { stroke-dashoffset: calc(var(--dash) * .05); }
  100% { stroke-dashoffset: 0; }
}

/* Straight crossfade (si tu les gardes — sinon tu peux supprimer toute cette partie) */
.pk-workflow.is-running .wf-line--straight{
  stroke-dasharray: var(--dash2);
  stroke-dashoffset: var(--dash2);
  animation:
    wfStraightDraw 3.0s ease-in-out forwards,
    wfStraightIn  0.9s ease forwards;
  animation-delay: 13.0s, 13.0s;
  z-index: 1;
}

@keyframes wfStraightDraw{
  from{ stroke-dashoffset: var(--dash2); }
  to  { stroke-dashoffset: 0; }
}

@keyframes wfStraightIn{
  from{ opacity: 0; }
  to  { opacity: 1; }
}

/* =========================
   Reduced motion
   ========================= */

@media (prefers-reduced-motion: reduce){
  .pk-workflow__box,
  .wf-line{
    animation: none !important;
    transition: none !important;
    filter: none !important;
  }
  .pk-workflow__box{
    opacity: 1;
    transform: translateY(-50%);
  }
  .wf-line--wavy{ opacity: 0; }
  .wf-line--straight{ opacity: 1; }
}


/* ======================= */
/* SECTION SERVICES        */
/* ======================= */

.pk-services-section {
  padding: 4rem 0;
  background: #101010;
  border-top: 1px solid #303030;
  border-bottom: 1px solid #303030;
}

.pk-services-wrapper {
    max-width: 1280px;
    margin: 0 auto 3rem;
    padding: 0 2rem;
}

/* NB: .pk-section-title est défini globalement dans components.css */

.pk-services-intro {
    display: grid;
    gap: 1rem;
    line-height: 1.7;
    color: #ccc;
    margin: auto;
    background: #000000;
    padding: 24px;
    border: 1px solid #404040;
    border-radius: 8px;
}

.pk-services-intro p b {
  color: #fff;
}

.pk-services-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem 2rem 3rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

@media (max-width: 1024px) {
  .pk-services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .pk-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .pk-services-grid {
    grid-template-columns: 1fr;
  }
}

.pk-service-card {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  padding: 12px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.35);
  display: flex;
  place-items: center;
  flex-direction: column;
  text-decoration: none;
}

.pk-service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.42);
  z-index: 1;
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.55);
}

.pk-service-card * {
  position: relative;
  z-index: 2;
}

.pk-service-card:hover {
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.45);
    opacity: 0.6 !important;
    border: 1px solid #dd9933 !important;
}

.pk-service-card .pk-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 1rem;
  fill: #fff;
}

.pk-service-card h3 {
  margin-top: 0.5rem;
  color: #fff;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* backgrounds pour services */
.arki {
  background-image: url(/images/background-images/arki.webp);
}

.lands {
  background-image: url(/images/background-images/lands.webp);
}

.estate {
  background-image: url(/images/background-images/estate.webp);
}

.bnb {
  background-image: url(/images/background-images/bnb.webp);
}

.bnb2 {
  background-image: url(/images/background-images/bnb2.webp);
}

.horeca {
  background-image: url(/images/background-images/horeca.webp);
}

.sroom {
  background-image: url(/images/background-images/sroom.webp);
}

.shops {
  background-image: url(/images/background-images/shops.webp);
}

.portraits {
  background-image: url(/images/background-images/portraits.webp);
}

.drone {
  background-image: url(/images/background-images/drone.webp);
}

.babyboy {
  background-image: url(/images/background-images/babyboy.webp);
}

.cosplay {
  background-image: url(/images/background-images/cosplay.webp);
}

/* ======================= */
/* INTERSTICE IMAGE        */
/* ======================= */

.pk-interstice {
  margin: 0;
  padding: 0;
}

.pk-interstice-img {
  width: 100%;
  height: auto;
  display: block;
}

/* ======================= */
/* FUN FACTS / COUNTERS    */
/* ======================= */

.pk-facts-section {
  padding: 4rem 0;
  background: url(/images/background-images/fun-fact-bg.avif) center center / cover no-repeat fixed;
}

.pk-facts-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem 3rem;
  text-align: center;
}

.pk-facts-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2.5rem;
}

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

@media (max-width: 600px) {
  .pk-facts-grid {
    grid-template-columns: 1fr;
  }
}

.pk-title-intro { 
  font-size: 1.05rem;
  color: #ccc;

  width: 100%;
  max-width: 1100px;
  margin-inline: auto;

  font-weight: 100 !important;
  font-family: Arial, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  text-align: center;

  background: #101010;
  padding: 8px 14px;
  border: 1px solid #dd9933;
  border-radius: 6px;

  box-sizing: border-box;
}


.pk-fact {
    background: #0e0e0e;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    border: 1px solid #404040;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.45);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .75rem;
    transform: translateY(0);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    min-width: 280px;
}
.pk-fact:hover {
  transform: translateY(-6px);
  border-color: #dd9933;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.6);
}

.pk-icon--fact {
  width: 84px;
  height: 84px;
  margin-bottom: 0.25rem;
  fill: var(--color-accent);
}

.pk-fact-value {
  font-size: 3.4rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.05em;
  padding: 0;
  margin: 0;
}

.pk-fact-label {
  margin: 0;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #ccc;
}

@keyframes pk-halo {
  0% {
    transform: scale(1);
    filter: drop-shadow(0 0 0 rgba(221, 153, 51, 0));
  }

  45% {
    transform: scale(1.25);
    filter: drop-shadow(0 0 18px rgba(221, 153, 51, 0.8));
  }

  80% {
    transform: scale(1.05);
    filter: drop-shadow(0 0 8px rgba(221, 153, 51, 0.6));
  }

  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 0 rgba(221, 153, 51, 0));
  }
}

.pk-fact--halo .pk-icon--fact {
  animation: pk-halo 0.9s ease-out forwards;
}

/* ======================= */
/* LINKS – Pixel Komando   */
/* ======================= */

/* ===============================
   PK INTERNAL LINKS (GRID)
================================= */

.pk-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    margin-top: 28px;
    margin-bottom: 44px;
}

.pk-links-card{
  display:block;
  padding:18px 20px;
  background:#151515;
  border:1px solid rgba(221,153,51,0.18);
  border-radius:14px;
  text-decoration:none;
  transition:all .25s ease;
  position:relative;
  overflow:hidden;
}

/* hover glow subtil */
.pk-links-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(120deg, transparent, rgba(221,153,51,0.15), transparent);
  opacity:0;
  transition:opacity .3s ease;
}

.pk-links-card:hover::before{
  opacity:1;
}

.pk-links-card:hover{
  transform:translateY(-3px);
  border-color:rgba(221,153,51,0.45);
  box-shadow:0 8px 24px rgba(0,0,0,0.4);
}

.pk-links-kicker {
    display: block;
    font-size: 14px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #dd9933;
    margin-bottom: 6px;
    font-weight: 600;
}

.pk-links-title {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 4px;
    text-transform: uppercase;
    font-family: 'Raleway';
}
.pk-links-sub{
  display:block;
  font-size:13px;
  color:#bfbfbf;
  line-height:1.4;
}

/* mobile tweak */
@media (max-width:600px){
  .pk-links-grid{
    gap:12px;
  }
  .pk-links-card{
    padding:14px 16px;
  }
}
/* ===============================
   Vos certitudes – footer style
   =============================== */

.pk-certainties-footer {
  padding: 4.5rem 0;
  background: radial-gradient(
    1000px 300px at 50% -20%,
    rgba(221,153,51,.08),
    transparent 60%
  );
}

.pk-section-title {
  text-align: center;
  font-size: 3.2rem;
  margin-bottom: 3.2rem;
  letter-spacing: .02em;
}

.pk-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #dd9933;
  margin-right: 10px;
  transform: translateY(-4px);
}

.pk-icon--cert {
    width: 34px;
    height: 34px;
    margin-bottom: 0.25rem;
    fill: var(--color-accent);
}

/* Reuse footer grid */
.pk-footer-grid {
  display: grid;
  gap: 1.6rem;
}

.pk-footer-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

/* Footer card (reused) */
.pk-footer-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .02));
    border: 1px solid rgba(255, 255, 255, .30);
    border-radius: 8px;
    padding: 1.2rem;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .45);
}
.pk-footer-icon {
  font-size: 2.2rem;
  color: #dd9933;
  margin-bottom: 1.2rem;
}

.pk-footer-card h3 {
    font-size: 1.2rem;
    margin-bottom: .6rem;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.pk-footer-card p {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, .95);
}

/* Hover (footer-like, subtil) */
.pk-footer-card:hover {
  border-color: rgba(221,153,51,.35);
  transform: translateY(-2px);
  transition: .25s ease;
}

/* Responsive */
@media (max-width: 1024px) {
  .pk-footer-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .pk-footer-grid--4 {
    grid-template-columns: 1fr;
  }
}


/* ======================= */
/* RESEAUX SOCIAUX SECTION */
/* ======================= */

.pk-social-section {
  padding: 4rem 0;
  background: url(/images/background-images/twitter.avif) center center / cover no-repeat fixed;
}

.pk-social-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem 3rem;
  text-align: center;
}

.pk-social-grid {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.75rem;
}

.pk-social-link {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition:
    transform .22s ease,
    box-shadow .22s ease,
    border-color .22s ease,
    background .22s ease;
}

.pk-social-link .pk-icon {
  width: 32px;
  height: 32px;
  fill: #fff;
  transition: fill .25s ease;
}

.pk-social-link:hover {
  transform: translateY(-4px) scale(1.05);
  background: #181208;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.7),
              0 0 18px rgba(221, 153, 51, 0.4);
}

/* ======================= */
/* CLIENTS – DOUBLE SLIDER */
/* ======================= */

.pk-clients-section {
  background: #101010;
  padding: 4rem 0;
}

.pk-clients-header {
  max-width: 1200px;
  margin: 0 auto 2.5rem;
  padding: 0 2rem;
  text-align:center;
}

.pk-clients-slider {
  width: 100%;
  overflow: hidden;
  padding: 4.4rem 0;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.pk-clients-row {
  width: 100%;
  overflow: hidden;
}

.pk-clients-track {
  display: flex;
  will-change: transform;
  animation: pk-clients-marquee 45s linear infinite;
  animation-play-state: paused;
}

.pk-clients-row--bottom .pk-clients-track {
  animation-duration: 55s;
}

.pk-clients-group {
  display: flex;
  align-items: center;
  gap: 4rem;
  flex-shrink: 0;
}

.pk-clients-group img {
  display: block;
  width: 160px;
  height: 80px;
  object-fit: contain;
  filter: grayscale(100%) brightness(0.8);
  opacity: 0.9;
  transition: transform .25s ease,
              filter .25s ease,
              opacity .25s ease;
}

.pk-clients-group img:hover {
  filter: grayscale(0%) brightness(1);
  opacity: 1;
  transform: scale(1.08);
}

@keyframes pk-clients-marquee {
  from {
    transform: translateX(var(--pk-marquee-start, 0px));
  }

  to {
    transform: translateX(var(--pk-marquee-end, -500px));
  }
}

.pk-clients-track.pk-marquee-ready {
  animation-play-state: running;
}

/* ======================= */
/* CONTACT SUMMARY         */
/* ======================= */

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

.pk-footer {
    background: #000;
    color: rgba(255, 255, 255, .86);
    border-top: 1px solid rgba(255, 255, 255, .2);
}

.pk-footer__links li {
    border-bottom: 1px dotted #303030;
}

/* largeur + rythme */
.pk-footer__inner{
  max-width: 1400px;
  margin: 0 auto;
  padding: 3.2rem 1.2rem 2.2rem;
  display: grid;
  grid-template-columns: 1fr 1fr 2fr; /* 1/4, 1/4, 2/4 */
  gap: 2.2rem;
  align-items: start;
}

.pk-footer__title {
    margin: 0 0 2.2rem;
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    font-size: .95rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(255, 255, 255, 1);
}
/* petit carré orange signature */
.pk-footer__dot{
  width: .55rem;
  height: .55rem;
  background: #dd9933;
  border-radius: 2px;
  flex: 0 0 auto;
  transform: translateY(1px);
}

.pk-footer__text {
    margin: 0;
    font-style: normal;
    line-height: 2;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-size: 0.74rem;
    color: rgba(255, 255, 255, 0.75);
}

.pk-footer__list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .7rem;
}

.pk-footer a{
  color: rgba(255,255,255,.82);
  text-decoration: none;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .86rem;
}
.pk-footer a:hover{
  color: #dd9933;
}

/* Liens 2 colonnes (3 lignes) */
.pk-footer__links{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .7rem 2rem; /* row / col */
}

/* icônes inline */
.pk-ico{
  color: #dd9933;
  flex: 0 0 auto;
  transform: translateY(1px);
}

/* items contact alignés */
.pk-footer__item{
  display: flex;
  align-items: center;
  gap: .6rem;
}

/* square devant liens */
.pk-footer__link{
  display: flex;
  align-items: center;
  gap: .55rem;
}

.pk-footer-square {
    width: .45rem;
    height: .45rem;
    background: #444;
    border-radius: 2px;
    transform: translateY(-1px);
    display: inline-flex;
    margin-right: 14px;
}

/* barre copyright plus fine + plus élégante */
.pk-footer__bottom{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  padding: 1rem 1.2rem;
  border-top: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(to bottom, rgba(255,255,255,.03), transparent);
}

.pk-footer__dot--small{
  width: .45rem;
  height: .45rem;
}

.pk-footer__copy{
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: .78rem;
  color: rgba(255,255,255,.55);
}

/* responsive */
@media (max-width: 980px){
  .pk-footer__inner{
    grid-template-columns: 1fr;
    padding: 2.6rem 1.2rem 1.8rem;
    gap: 1.8rem;
  }
  .pk-footer__links{
    grid-template-columns: 1fr; /* sur mobile, 1 colonne */
  }
}

/* ======================= */
/* FIX MOBILE ABOUT + ME   */
/* ======================= */

@media (max-width: 768px) {

  /* About : on réduit les marges/paddings pour coller au viewport */
  .pk-about-wrapper {
    max-width: 100%;
    margin: 2rem 0;
    padding: 2rem 1.5rem;
  }

  .pk-about-content {
    max-width: 100%;
  }

  /* Me : même logique, on évite tout débordement à droite */
  .pk-me-wrapper {
    max-width: 100%;
    margin: 0;
    padding: 2.5rem 1.5rem;
  }

  .pk-me-text {
    padding: 1.5rem 1.5rem;
  }

  .pk-me-image img.vince {
    max-width: 100%;
    height: auto;
    display: block;
  }
}

/* Filet de sécurité global si un truc dépasse encore */
@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }
}

/* ============================ */
/* PK MODEL CARD – VERSION 2025 */
/* ============================ */

.pk-model-card {
  background: #0b0b0b;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1.8rem;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.pk-model-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
  border-color: #dd9933;
}

/* TITRE */
.pk-model-title {
  font-family: var(--font-title, "Bebas Neue");
  font-size: 1.9rem;
  letter-spacing: 0.04em;
  color: #fff;
  position: relative;
  padding-bottom: .4rem;
}

.pk-model-title::after {
  content: "";
  width: 42px;
  height: 2px;
  background: #dd9933;
  position: absolute;
  bottom: 0;
  left: 0;
}

.pk-mods-grid--4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 1280px;
    margin: auto;
    gap: 78px;
}

/* Tablette */
@media (max-width: 1024px) {
  .pk-mods-grid--4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
  }
}

/* Mobile */
@media (max-width: 540px) {
  .pk-mods-grid--4 {
    grid-template-columns: 1fr;

  }
}

.pk-mods-grid--4 img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border: 1px solid #303030;
    border-radius: 8px;
    margin-bottom: 34px;
}

/* INFOS */
.pk-model-info {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .45rem;
  color: #ddd;
  font-size: .95rem;
}

.pk-model-info span {
  color: #dd9933;
  font-weight: 600;
}

/* CTA */
.pk-model-contact {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .7rem 1.1rem;
  background: #dd9933;
  color: #000;
  border-radius: .5rem;
  font-weight: 600;
  font-size: .9rem;
  text-decoration: none;
  transition: background .2s ease;
}

.pk-model-contact:hover {
  background: #f3ae44;
}

.pk-model-contact .pk-icon {
  width: 20px;
  height: 20px;
  color: #000;
}

/* GRID AUTO-FIT */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-bottom: 44px;
}

/* MOBILE */
@media (max-width: 600px) {
  .pk-model-card {
    padding: 1.4rem;
  }

  .pk-model-title {
    font-size: 1.6rem;
  }
}

section#shooting-section {
  padding-block: 4rem 2rem;
  background: #101010;
  margin-bottom: 44px;
}

/* Mode contact sheet (Portfolio v2) */
.pk-portfolio-grid--contact {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
  padding: 1.5rem 0;
}

@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));
  }
}


.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;
}


.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);
}

Option : petit numéro en coin (si tu veux plus tard)
.pk-portfolio-grid--contact .pk-portfolio-item {
  counter-increment: pk-shot;
  position: relative;
}

#page-shooting .lead-p a {
    color: #dd9933;
}

#page-shooting .lead-p a:hover {
    color: #f1b766;
  }

.pk-share__btn{
  width: 44px;
  height: 44px;
  padding: 0;
  display: grid;
  place-items: center;
}

.pk-share__icon{
  width: 18px;
  height: 18px;
  fill:#fff;
}

.sr-only{
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   PK — EMERGENCY MOBILE FIX (index.html)
   Colle ce bloc TOUT EN BAS de ton CSS global
   ============================================================ */

/* 1) Stop overflow global */
*, *::before, *::after { box-sizing: border-box; }
img, svg, video, canvas { max-width: 100%; height: auto; }

/* 2) Containers: force un padding latéral + centrage */
:root{
  --pk-gutter: clamp(14px, 4vw, 26px);
}


/* Si tu as une “max width” type 1280 ailleurs, ce petit helper aide */
.pk-wrap{
  width: min(1280px, calc(100% - (2 * var(--pk-gutter))));
  margin-inline: auto;
}

/* 3) Sur mobile: évite les largeurs fixes qui dépassent */
@media (max-width: 960px){
  /* évite le “margin-right fantôme” */
  body{ position: relative; }

  /* tout ce qui est en 100vw crée souvent une marge droite si scrollbars */
  .full-bleed,
  .pk-fullBleed,
  [class*="full"],
  [style*="100vw"]{
    max-width: 100%;
  }
}

/* 4) HERO: empêche les blocs de “surplomber tout” sur mobile */
@media (max-width: 960px){
  /* IMPORTANT: adapte les sélecteurs si ton hero s’appelle autrement */
  .pk-hero,
  .pk-hero *{
    transform: none !important; /* stop les translateY/scale qui sortent du cadre */
  }

  /* Les “sectors/chips” : on les remet en flow normal + wrap */
  .pk-hero__sectors,
  .pk-sectors{
    position: static !important;
    inset: auto !important;
    width: 100% !important;
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }

  .pk-hero__sectors a,
  .pk-sectors a,
  .pk-sector{
    flex: 1 1 calc(50% - 10px);
    min-width: 160px;
    max-width: 100%;
  }
}

/* 5) NAV mobile “invisible” : sécurise l’affichage + z-index */
@media (max-width: 960px){
  header, .pk-header, .site-header{
    position: relative;
    z-index: 9999;
  }

  /* panneau nav */
  #site-nav{
    position: fixed;
    top: 0; right: 0;
    height: 100dvh;
    width: min(86vw, 360px);
    background: rgba(16,16,16,.98);
    border-left: 1px solid #303030;
    transform: translateX(105%);
    transition: transform .22s ease;
    padding: 86px 18px 18px;
    overflow: auto;
  }

  /* quand menu ouvert (aria-expanded sur le bouton) */
  #navToggle[aria-expanded="true"] + #site-nav,
  #site-nav.is-open{
    transform: translateX(0);
  }

  /* assure que les liens se voient */
  #site-nav a{
    color: rgba(255,255,255,.92);
    text-decoration: none;
  }

  /* petits séparateurs propres */
  #site-nav li{ border-bottom: 1px solid rgba(255,255,255,.06); }
  #site-nav a{ display:block; padding: 12px 6px; }
}
/* MOBILE: empêche le menu de déborder horizontalement */
@media (max-width: 960px){

  .pk-nav{
    overflow-x: clip;
  }

  .pk-nav .sub-menu{
    position: static !important;
    width: 100% !important;
    max-width: 100% !important;
    transform: none !important;
  }

  .pk-nav ul.nav{
    width: 100%;
  }

  .pk-nav ul.nav > li > a{
    display: block;
    width: 100%;
  }
}

/* ============================================================
   PK — MOBILE NAV (robuste)
   - burger toujours cliquable
   - nav off-canvas
   - pas de débordement
   ============================================================ */

@media (max-width: 960px){

  /* Burger AU-DESSUS de tout */
 @media (max-width: 960px){
  /* Le header doit être au-dessus de tout */
  #header.header-section{
    position: sticky;
    top: 0;
    z-index: 9999;
  }

  /* Le conteneur du header sert d’ancre au burger */
  .pk-header-inner{
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  /* Burger: plus fixed, il reste dans le header (donc sticky) */
  #navToggle{
    position: relative;   /* <- IMPORTANT */
    top: auto;
    right: auto;
    margin-left: auto;    /* pousse à droite */
    z-index: 10002;
    pointer-events: auto;
  }
}


  /* Panneau nav */
  #site-nav{
    position: fixed;
    top: 0;
    right: 0;

    width: min(86vw, 360px);
    height: 100dvh;

    background: rgba(16,16,16,.98);
    border-left: 1px solid #303030;

    transform: translateX(105%);
    transition: transform .22s ease;

    z-index: 10001;
    overflow: auto;

    /* IMPORTANT: quand fermé -> pas cliquable */
    pointer-events: none;
    visibility: hidden;
  }

  /* Ouvert */
  #site-nav.is-open{
    transform: translateX(0);
    pointer-events: auto;
    visibility: visible;
  }

  /* Optionnel: voile derrière (si tu le crées en JS) */
  .pk-navOverlay{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.55);
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease;
  }
  .pk-navOverlay.is-open{
    opacity: 1;
    pointer-events: auto;
  }

  /* sécurité anti-overflow */
  @media (max-width: 960px){
  #site-nav, #site-nav * { max-width: 100%; }
}
  /* Sous-menus: en flow normal sur mobile (ne déborde pas) */
  #site-nav .sub-menu{
    position: static !important;
    width: 100% !important;
    max-width: 100% !important;
    transform: none !important;
  }
}
@media (max-width: 960px){
  /* Sur mobile, pas d'overlay : ça évite les chevauchements */
  .pk-strip--on-hero{
    position: static;
    background: #000;           /* propre sous le hero */
    border-top: 1px solid #2a2a2a;
  }

  /* Optionnel: un peu plus compact */
  .pk-strip__item{
    padding: 18px 16px;
    min-height: 96px;
  }
}

/* Tarifs = mobile only (hard lock) */
.pk-nav-tarifs-mobile{ display: none !important; }

@media (max-width: 960px){
  .pk-nav-tarifs-mobile{ display: list-item !important; }
}

/* =========================
   NEWS TAGS
========================= */
.pk-news-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.pk-tag {
  display: inline-block;
    padding: 6px 12px;
    font-size: 0.85rem;
    letter-spacing: .03em;
    color: var(--color-text-accent, #dd9933) !important;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 6px;
    text-decoration: none !important;
    transition: all .25s ease;
    text-transform: uppercase;
}

.pk-tag:hover,
.pk-tag:focus-visible {
  color: #000 !important;
  background: var(--color-accent, #dd9933);
  border-color: var(--color-accent, #dd9933);
  outline: none;
}

#maillage {
    border-bottom: 1px solid #404040;
}

.pk-grid-4{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:16px;
margin-top:20px;
}

.pk-grid-4 img{
width:100%;
height:auto;
border-radius:4px;
}

Mobile :

@media (max-width:900px){
.pk-grid-4{
grid-template-columns:repeat(2,1fr);
}
}

