/* ===== URBAN TRUTH — StudioHolostar ===== */

/* Titre (proche du style Flare) */
.project-header {
    text-align: center;
    margin: 100px auto 24px;
  }
  .project-header .caption {
    color: rgba(244,244,244,.7);
    letter-spacing: .2em;
    text-transform: uppercase;
    font-size: 12px;
  }
  .project-title {
    font-weight: 800;
    font-size: clamp(30px, 4.8vw, 48px);
    line-height: 1.1;
    letter-spacing: 0;
    margin-top: 8px;
  }
  
  /* Triptyque 3 colonnes bordées (look Flare) */
  .urban-triptych {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0; /* séparateurs via bordures */
    border-top: 2px solid rgba(255,255,255,.06);
    border-bottom: 2px solid rgba(255,255,255,.06);
    margin: 18px 0 60px;
  }
  .urban-triptych .panel {
    position: relative;
    overflow: hidden;
    background: #111;
    /* format assez haut comme la capture */
    aspect-ratio: 3 / 4;             /* ↑ ajuste à 2/3 si tu veux encore plus haut */
  }
  .urban-triptych .panel + .panel {
    border-left: 2px solid rgba(255,255,255,.06);
  }
  .urban-triptych .panel img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .45s ease, filter .45s ease;
    filter: contrast(1.02) brightness(.96);
  }
  .urban-triptych .panel:hover img {
    transform: scale(1.04);
    filter: contrast(1.08) brightness(1);
  }
  /* légende optionnelle (style discret) */
  .urban-triptych figcaption {
    position: absolute; left: 18px; bottom: 16px;
    font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
    color: rgba(255,255,255,.8);
  }
  
  /* Responsive : pile en 1 colonne */
  @media (max-width: 980px) {
    .urban-triptych { grid-template-columns: 1fr; }
    .urban-triptych .panel + .panel {
      border-left: 0; border-top: 2px solid rgba(255,255,255,.06);
    }
    .urban-triptych .panel { aspect-ratio: 4 / 5; }
  }
  
  /* You may also like (3 cartes bordées) */
  .also-like {
    width: 100%;
    margin: 80px 0 120px;
  }
  .also-like .section-caption {
    text-align: center; color: rgba(244,244,244,.7);
    font-size: 14px; letter-spacing: .18em; text-transform: uppercase;
    margin-bottom: 18px;
  }
  .also-like-row {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
    border-top: 2px solid rgba(255,255,255,.06);
    border-bottom: 2px solid rgba(255,255,255,.06);
  }
  .also-like-card { position: relative; aspect-ratio: 4/3; overflow: hidden; }
  .also-like-card + .also-like-card { border-left: 2px solid rgba(255,255,255,.06); }
  .also-like-card img {
    position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
    filter: brightness(.95); transition: transform .45s, filter .45s;
  }
  .also-like-card:hover img { transform: scale(1.05); filter: brightness(1); }
  .also-like-card h3 {
    position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
    padding: 8px; text-align: center; font-weight: 900; text-transform: uppercase;
    font-size: clamp(18px, 2.6vw, 34px); color: #fff; text-shadow: 0 3px 16px rgba(0,0,0,.7);
  }
  @media (max-width: 980px) {
    .also-like-row { grid-template-columns: 1fr; }
    .also-like-card + .also-like-card { border-left: 0; border-top: 2px solid rgba(255,255,255,.06); }
  }
  
  /* CTA */
  .project-cta { display: flex; justify-content: center; margin: 40px 0 90px; }
  
  .video-fullscreen {
    position: fixed;
    inset: 0;
    background: #000;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
  }
  
  .video-fullscreen video {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    background: #000;
  }
  
  /* État actif = visible */
  .video-fullscreen.active {
    display: flex;
  }
  
  /* Croix pour fermer */
  .video-fullscreen::after {
    content: "✕";
    position: absolute;
    top: 24px;
    right: 28px;
    color: rgba(255,255,255,.7);
    font-size: 28px;
    cursor: pointer;
    transition: opacity .3s;
  }
  .video-fullscreen:hover::after {
    opacity: 1;
  }
  