
  /* ══ P-HERO VIDEO SECTION ══ */
  .p-hero-video {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .p-hero-video video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
  }

  .p-hero-video::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(17,17,17,0.3) 0%,
      rgba(17,17,17,0.15) 40%,
      rgba(17,17,17,0.15) 60%,
      rgba(17,17,17,0.7) 100%
    );
    pointer-events: none;
  }

  .p-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
  }

  .p-hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--white);
    text-shadow: 0 2px 40px rgba(0,0,0,0.5);
  }

  .p-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 12px;
    cursor: pointer;
  }

  .p-scroll-indicator::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: rgba(255,255,255,0.6);
    border-radius: 2px;
    animation: p-scrollPulse 1.8s ease-in-out infinite;
  }

  @keyframes p-scrollPulse {
    0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0.3; transform: translateX(-50%) translateY(12px); }
  }

  @media (max-width: 600px) {
    .p-hero-video { height: 60vh; min-height: 350px; }
  }

  /* ══ GALLERY GRID ══ */
  .gallery-section {
    padding: 40px 16px 80px;
    max-width: 1400px;
    margin: 0 auto;
  }

  .gallery-grid {
    columns: 3;
    column-gap: 12px;
  }

  @media (max-width: 1024px) {
    .gallery-grid { columns: 2; }
  }

  @media (max-width: 600px) {
    .gallery-grid { columns: 1; }
  }

  .gallery-item {
    break-inside: avoid;
    margin-bottom: 12px;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
    display: block;
  }

  .gallery-item img {
    width: 100%;
    display: block;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.4s ease;
    will-change: transform;
  }

  .gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
  }

  .gallery-item:hover img {
    transform: scale(1.05);
  }

  .gallery-item:hover::after {
    opacity: 1;
  }

  .gallery-item .item-title {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    font-family: 'Playfair Display', serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--white);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease 0.05s;
    z-index: 2;
    pointer-events: none;
    text-shadow: 0 1px 8px rgba(0,0,0,0.6);
  }

  .gallery-item:hover .item-title {
    opacity: 1;
    transform: translateY(0);
  }

  /* ══ LIGHTBOX ══ */
  .lightbox-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.97);
    display: none;
    opacity: 0;
    transition: opacity 0.35s ease;
  }

  .lightbox-overlay.active {
    display: block;
  }

  .lightbox-overlay.fade-in {
    opacity: 1;
  }

  /* Header */
  .lightbox-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    z-index: 20;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6), transparent);
  }

  .lightbox-counter {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    letter-spacing: 0.05em;
  }

  .lightbox-close {
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, transform 0.2s ease;
    line-height: 1;
  }

  .lightbox-close:hover {
    background: rgba(255,255,255,0.2);
    transform: scale(1.1);
  }

  /* Single centered image display */
  .lightbox-stage {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 64px 80px 100px;
    z-index: 10;
    touch-action: pan-y;
    user-select: none;
  }

  @media (max-width: 768px) {
    .lightbox-stage { padding: 64px 16px 110px; }
  }

  .lightbox-stage img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 8px 60px rgba(0,0,0,0.5);
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .lightbox-stage img.entering {
    opacity: 0;
    transform: scale(0.95);
  }

  .lightbox-stage img.visible {
    opacity: 1;
    transform: scale(1) translateX(0);
  }

  /* Nav buttons */
  .lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 30;
    width: 48px;
    height: 48px;
    border: none;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, transform 0.2s ease, opacity 0.3s ease;
    backdrop-filter: blur(4px);
  }

  .lightbox-nav:hover {
    background: rgba(255,255,255,0.18);
    transform: translateY(-50%) scale(1.08);
  }

  .lightbox-nav.hidden {
    opacity: 0;
    pointer-events: none;
  }

  .lightbox-prev { left: 16px; }
  .lightbox-next { right: 16px; }

  @media (max-width: 600px) {
    .lightbox-nav { width: 38px; height: 38px; font-size: 1.1rem; }
    .lightbox-prev { left: 8px; }
    .lightbox-next { right: 8px; }
  }

  /* Footer */
  .lightbox-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 24px;
    text-align: center;
    z-index: 20;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  }

  .lightbox-title {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    letter-spacing: 0.03em;
  }

  /* Dots */
  .lightbox-dots {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin-top: 10px;
    flex-wrap: wrap;
  }

  .lightbox-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    padding: 0;
  }

  .lightbox-dot.active {
    background: var(--gold);
    width: 20px;
    border-radius: 3px;
  }

  /* Body no scroll when lightbox open */
  body.lightbox-open {
    overflow: hidden;
  }
