/* =========================
   JALLY — Modern UI (WEB 2026)
   ONE CSS FOR ALL PAGES
   ========================= */

:root{
  --bg0:#07080c;
  --bg1:#0b0f18;

  --card: rgba(255,255,255,.06);
  --card2: rgba(255,255,255,.09);
  --stroke: rgba(255,255,255,.14);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.70);
  --muted2: rgba(255,255,255,.55);
  --shadow: 0 22px 60px rgba(0,0,0,.55);
  --shadow2: 0 14px 40px rgba(0,0,0,.45);

  --a1:#b9c2ff;
  --a2:#7cf0ff;

  --radius: 18px;
  --radius2: 26px;

  --max: 1180px;
  --pad: clamp(18px, 3.2vw, 34px);
}

/* RESET */
*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 15% 8%, rgba(124,240,255,.14), transparent 55%),
    radial-gradient(900px 520px at 80% 12%, rgba(185,194,255,.16), transparent 56%),
    radial-gradient(1200px 760px at 50% 105%, rgba(255,255,255,.08), transparent 60%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
  overflow-x:hidden;
}
a{ color:inherit; text-decoration:none; }
img{ max-width:100%; height:auto; display:block; }

.container{
  width:min(var(--max), calc(100% - (var(--pad)*2)));
  margin:0 auto;
}

/* NAV */
.nav{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(7,8,12,.55);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 12px 0;
  gap: 18px;
}

.brand{
  display:flex;
  align-items:center;
  gap: 12px;
  min-width: 180px;
}
.site-logo{
  width: 52px;
  height: auto;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 10px 28px rgba(0,0,0,.35);
  flex: 0 0 auto;
}
.brand-name{
  display:block;
  white-space: nowrap;
  letter-spacing: .10em;
  text-transform: uppercase;
}
.brand-name h2{
  margin:0;
  font-size: 16px;
  letter-spacing: .14em;
}
.brand-name br{ display:none; }
.brand-name{
  font-size: 12px;
  color: rgba(255,255,255,.75);
}

.nav-links{
  display:flex;
  gap: 14px;
  flex-wrap:wrap;
  align-items:center;
  justify-content:flex-end;
}
.nav-links a{
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--muted);
  border: 1px solid transparent;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
  font-size: 14px;
}
.nav-links a:hover{
  color: var(--text);
  border-color: rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  transform: translateY(-1px);
}
.nav-cta{ display:flex; gap:10px; align-items:center; }

/* BUTTONS */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: var(--text);
  font-weight: 600;
  letter-spacing:.02em;
  box-shadow: 0 10px 24px rgba(0,0,0,.25);
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
  font-size: 14px;
}
.btn:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.18);
  box-shadow: 0 16px 34px rgba(0,0,0,.35);
}
.btn-primary{
  background: linear-gradient(135deg, rgba(124,240,255,.32), rgba(185,194,255,.26));
  border-color: rgba(255,255,255,.18);
}
.btn-ghost{ background: transparent; }
.btn svg{ width:16px; height:16px; opacity:.95; }

/* HERO (HOME) */
.hero{
  position:relative;
  padding: clamp(54px, 7vw, 92px) 0 clamp(42px, 5vw, 66px);
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(18px, 3.5vw, 46px);
  align-items: center;
}

.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  color: var(--muted);
  font-size: 13px;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.dot{
  width:8px; height:8px; border-radius:50%;
  background: linear-gradient(135deg, var(--a2), var(--a1));
  box-shadow: 0 0 0 6px rgba(124,240,255,.10);
}

h1{
  margin: 16px 0 12px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.03em;
}
.subtitle{
  margin:0;
  color: var(--muted);
  font-size: clamp(16px, 1.7vw, 18px);
  line-height: 1.6;
  max-width: 62ch;
}
.hero-actions{
  margin-top: 22px;
  display:flex;
  flex-wrap:wrap;
  gap: 12px;
  align-items:center;
}

/* HERO RIGHT CARD */
.hero-card{
  position:relative;
  border-radius: var(--radius2);
  padding: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
  overflow:hidden;
}

/* POSTER (HOME + ABOUT) */
.poster{
  position:relative;
  border-radius: 22px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
}

/* IMPORTANT: image inside poster => never huge */
.poster img{
  width: 100%;
  height: 280px;
  object-fit: cover;
  display:block;
}

.poster::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(340px 220px at 60% 70%, rgba(255,255,255,.05), transparent 62%),
    repeating-linear-gradient(
      180deg,
      rgba(255,255,255,.03),
      rgba(255,255,255,.03) 1px,
      transparent 1px,
      transparent 6px
    );
  mix-blend-mode: overlay;
  opacity: 0.25;
  pointer-events:none;
}
.poster-badge{
  position:absolute;
  left: 14px;
  top: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(7,8,12,.65);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: .10em;
  text-transform: uppercase;
  z-index: 2;
}

/* SECTIONS */
section{ padding: clamp(42px, 6vw, 78px) 0; }

.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 18px;
  margin-bottom: 18px;
}
h2{
  margin:0;
  font-size: clamp(22px, 3vw, 34px);
  letter-spacing: -0.02em;
}
.section-desc{
  margin: 0;
  color: var(--muted);
  max-width: 70ch;
  line-height: 1.65;
  font-size: 15px;
}

/* CARDS (home/about blocks) */
.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}
.card{
  border-radius: var(--radius);
  padding: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 18px 46px rgba(0,0,0,.35);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
  position:relative;
  overflow:hidden;
}
.card:hover{
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.18);
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.05));
}
.icon{
  width:40px; height:40px; border-radius: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  display:grid; place-items:center;
  margin-bottom: 12px;
  box-shadow: 0 12px 26px rgba(0,0,0,.25);
}
.card h3{ margin: 0 0 8px; font-size: 16px; letter-spacing:.01em; }
.card p{ margin:0; color: var(--muted); line-height: 1.65; font-size: 14px; }

/* APPROACH */
.approach{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 14px;
  align-items: stretch;
  margin-top: 18px;
}
.panel{
  border-radius: var(--radius2);
  padding: 22px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  box-shadow: var(--shadow2);
  position:relative;
  overflow:hidden;
}
.list{
  margin: 14px 0 0;
  padding:0;
  list-style:none;
  display:grid;
  gap: 10px;
}
.li{
  display:flex;
  gap: 10px;
  align-items:flex-start;
  padding: 12px 12px;
  border-radius: 16px;
  background: rgba(7,8,12,.35);
  border: 1px solid rgba(255,255,255,.10);
  color: var(--muted);
  line-height: 1.55;
  font-size: 14px;
}
.check{
  flex: 0 0 auto;
  width: 22px; height: 22px;
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  display:grid; place-items:center;
  margin-top: 2px;
  box-shadow: 0 10px 22px rgba(0,0,0,.25);
}
.check svg{ width:14px; height:14px; opacity:.95; }

/* PAGE HERO (universes/productions/about) */
.page-hero{
  padding: clamp(42px, 6vw, 78px) 0 10px;
}
.crumbs{
  display:flex; gap:10px; align-items:center; flex-wrap:wrap;
  color: var(--muted);
  font-size: 14px;
  margin: 10px 0 0;
}
.crumbs a{
  color: var(--muted);
  border-bottom:1px solid transparent;
}
.crumbs a:hover{
  color: var(--text);
  border-bottom-color: rgba(255,255,255,.18);
}

/* SEARCH + CHIPS (universes/productions) */
.searchbar{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top: 14px;
}
.input{
  flex: 1 1 260px;
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(7,8,12,.35);
  color: var(--text);
  outline: none;
  box-shadow: 0 10px 22px rgba(0,0,0,.25);
}
.input::placeholder{ color: rgba(255,255,255,.45); }

.chips{
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
  margin-top: 14px;
}
.chip{
  display:inline-flex; align-items:center; justify-content:center;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: var(--muted);
  font-size: 13px;
  cursor: pointer;
  user-select:none;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
}
.chip:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.16);
  color: var(--text);
}
.chip.active{
  background: linear-gradient(135deg, rgba(124,240,255,.22), rgba(185,194,255,.18));
  border-color: rgba(255,255,255,.18);
  color: var(--text);
}

.hidden{ display:none !important; }

/* UNIVERS CARDS (if you keep u-grid/u-card) */
.u-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 22px;
}
.u-card{
  border-radius: var(--radius2);
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 18px 46px rgba(0,0,0,.35);
  overflow:hidden;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
  min-height: 360px;
  display:flex;
  flex-direction:column;
}
.u-card:hover{
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.18);
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.05));
}
.u-cover{ height: 168px; position:relative; border-bottom: 1px solid rgba(255,255,255,.10); }
.u-body{
  padding: 16px 16px 18px;
  display:flex;
  flex-direction:column;
  gap:10px;
  flex: 1 1 auto;
}

/* IMPORTANT: images inside cards => fixed size, no giant */
.u-body img{
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 18px;
  margin: 0 0 6px;
}

/* PRODUCTIONS CARDS */
.p-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 22px;
}
.p-card{
  border-radius: var(--radius2);
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 18px 46px rgba(0,0,0,.35);
  overflow:hidden;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
  min-height: 420px;
  display:flex;
  flex-direction:column;
}
.p-card:hover{
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.18);
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.05));
}
.p-cover{ height: 176px; position:relative; border-bottom: 1px solid rgba(255,255,255,.10); }
.p-body{
  padding: 16px 16px 18px;
  display:flex;
  flex-direction:column;
  gap: 10px;
  flex: 1 1 auto;
}

/* IMPORTANT: images in productions cards => fixed */
.p-body img{
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 18px;
  margin: 0 0 6px;
}

.p-title{ margin:0; font-size: 16px; letter-spacing:.01em; }
.p-sub{ margin:0; color: var(--muted); font-size: 14px; line-height: 1.6; }

.meta{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 6px;
}
.meta .m{
  padding: 12px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}
.meta .m strong{
  display:block;
  color: var(--text);
  font-weight:650;
  margin-bottom: 2px;
}

/* ABOUT PAGE */
.about-slab{
  margin-top: 18px;
  border-radius: 28px;
  padding: 22px;
  background:
    radial-gradient(620px 240px at 18% 20%, rgba(124,240,255,.16), transparent 60%),
    radial-gradient(620px 240px at 85% 18%, rgba(185,194,255,.14), transparent 62%),
    rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
}
.about-slab-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 14px;
  align-items: stretch;
}
.intro-points{
  margin-top: 14px;
  display:grid;
  gap: 10px;
}
.point{
  padding: 12px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}
.point strong{ display:block; color: var(--text); font-weight:650; margin-bottom: 2px; }
.actions{ margin-top: 14px; display:flex; gap:10px; flex-wrap:wrap; }

.sidecard{
  border-radius: var(--radius2);
  padding: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.side-meta{
  margin-top: 12px;
  display:grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.pill{
  padding: 12px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}
.pill strong{ display:block; color: var(--text); font-weight:650; margin-bottom: 3px; }

/* FOOTER */
.site-footer, footer{
  padding: 28px 0 46px;
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 44px;
  background: transparent;
}
.foot{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  color: var(--muted2);
  font-size: 14px;
}
.social{ display:flex; gap:14px; flex-wrap:wrap; }
.social a{
  color: var(--muted2);
  border-bottom: 1px solid transparent;
}
.social a:hover{
  color: var(--text);
  border-bottom-color: rgba(255,255,255,.18);
}

/* SMALL FLOATING BUY BUTTON (your #buy) */
#buy{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  color: var(--text);
  padding: 12px 14px;
  border-radius: 999px;
  box-shadow: 0 16px 34px rgba(0,0,0,.35);
}
#buy:hover{ background: rgba(255,255,255,.10); }

/* RESPONSIVE */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .approach{ grid-template-columns: 1fr; }
  .cards{ grid-template-columns: 1fr; }
  .about-slab-grid{ grid-template-columns: 1fr; }
  .p-grid, .u-grid{ grid-template-columns: 1fr; }
  .meta{ grid-template-columns: 1fr; }
}

@media (max-width: 768px){
  .brand-name{ white-space: normal; }
  .nav-inner{ flex-wrap: wrap; }
  .nav-links{
    width: 100%;
    justify-content: center;
    gap: 10px;
  }
  .nav-cta{
    width:100%;
    justify-content:center;
  }
  h1{ font-size: clamp(32px, 9vw, 46px); }
  .poster img{ height: 240px; }
  .p-body img, .u-body img{ height: 200px; }
}
/* TEST QUICK: posters en entier */
.p-body img{
  height: auto !important;
  object-fit: contain !important;
}
footer, .foot, .social { position: relative; z-index: 50; }
.social a { position: relative; z-index: 60; pointer-events: auto; }

/* Si un overlay (before/after) recouvre le footer */
footer::before, footer::after { pointer-events: none; }
/* --- LOCK SOCIAL LINKS FOOTER --- */
footer, .foot, .social { 
  position: relative; 
  z-index: 50; 
}
/* ===== FOOTER SOCIAL ICONS (UNIQUE) ===== */
.social-icons{
  display:flex;
  flex-direction:row;
  justify-content:center;
  align-items:center;
  gap:20px;
  flex-wrap:wrap;
  margin-top:20px;
}

.social-icons a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.social-icons img{
  width:32px;
  height:32px;
  object-fit:contain;
  display:block;
  opacity:.85;
  transition:.25s ease;
  filter: invert(1);
}

.social-icons img:hover{
  opacity:1;
  transform:scale(1.12);
}
/* ===== END FOOTER SOCIAL ICONS ===== */
/* FORCE SOCIAL ICONS HORIZONTAL — EDITIONS FIX */
footer .social-icons{
  display:flex !important;
  flex-direction:row !important;
  justify-content:center !important;
  align-items:center !important;
  gap:20px !important;
}

footer .social-icons a{
  display:inline-flex !important;
}
/* FIX ALIGNEMENT LOGOS FOOTER (EDITIONS) */
footer .social-icons{
  display:flex !important;
  flex-direction: row !important;
  justify-content: flex-end !important; /* ou center si tu veux au milieu */
  align-items: center !important;
  gap: 14px !important;
  flex-wrap: nowrap !important;
}

footer .social-icons a{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
}


/* --- END LOCK --- */

/* =========================
   ABOUT — TEAM (ab.css)
   ========================= */

.about-team{ margin-top: 18px; }

.founder{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 14px;
  align-items:center;
}
.founder__name{ margin: 0 0 6px; }
.founder__role{ margin: 0 0 12px; color: var(--muted); }
.founder__bio{ margin: 0; color: var(--muted); line-height: 1.65; }
.founder__actions{ margin-top: 14px; }

.founder__media{ display:flex; justify-content:flex-end; }
.founder__img{
  width: 100%;
  max-width: 260px;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow2);
}

.team-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.team-card{
  border-radius: var(--radius);
  padding: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 18px 46px rgba(0,0,0,.35);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.team-card:hover{
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.18);
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.05));
}

.team-card h3{ margin: 0 0 8px; font-size: 16px; letter-spacing:.01em; }
.team-card .role{ margin: 0 0 10px; color: var(--muted2); font-size: 14px; }
.team-card .bio{ margin: 0; color: var(--muted); line-height: 1.65; font-size: 14px; }

.about-mini h3{ margin: 0 0 8px; }
.about-mini .section-desc{ margin:0; }

@media (max-width: 980px){
  .founder{ grid-template-columns: 1fr; }
  .founder__media{ justify-content:flex-start; }
  .founder__img{ max-width: 220px; }
  .team-grid{ grid-template-columns: 1fr; }
}
/* WooCommerce cart counter fix */

.cart-count,
.cart-contents-count,
.woocommerce-cart-count,
.header-cart-count {
  display: none !important;
}





