  /* ── HERO ── */
  .gallery-hero {
    position: relative; padding-top: 66px;
    background: var(--navy); overflow: hidden;
  }
  .hero-bg-img {
    position: absolute; inset: 0;
  }
  .hero-bg-img img { width: 100%; height: 100%; object-fit: cover; opacity: .18; }
  .hero-bg-grid {
    position: absolute; inset: 0;
    background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 48px 48px;
  }
  .hero-content {
    position: relative; z-index: 1;
    padding: 4.5rem 1.5rem 3.5rem;
    max-width: 1280px; margin: 0 auto;
    display: flex; flex-direction: column; align-items: center;
    text-align: center; gap: 1rem;
  }
  .hero-badge {
    display: inline-flex; align-items: center; gap: .4rem;
    font-size: .75rem; font-weight: 500; color: rgba(255,255,255,.75);
    background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
    padding: .32rem .85rem; border-radius: 20px;
  }
  .hero-title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2.2rem, 5vw, 3.8rem); color: #fff; line-height: 1.1;
  }
  .hero-title em { font-style: italic; color: var(--sky); }
  .hero-sub { font-size: 1rem; font-weight: 300; color: rgba(255,255,255,.7); max-width: 520px; line-height: 1.75; }

  /* Category tab bar */
  .category-bar {
    position: relative; z-index: 1;
    border-top: 1px solid rgba(255,255,255,.1);
    overflow-x: auto; scrollbar-width: none;
  }
  .category-bar::-webkit-scrollbar { display: none; }
  .category-bar-inner {
    max-width: 1280px; margin: 0 auto; padding: 0 1.5rem;
    display: flex; align-items: center; gap: 0;
    min-width: max-content;
  }
  .cat-btn {
    display: flex; align-items: center; gap: .45rem;
    padding: 1rem 1.4rem; font-size: .8rem; font-weight: 500;
    color: rgba(255,255,255,.55); background: none; border: none;
    border-bottom: 2px solid transparent;
    white-space: nowrap; transition: all .2s;
  }
  .cat-btn svg { width: 15px; height: 15px; flex-shrink: 0; }
  .cat-btn:hover { color: rgba(255,255,255,.85); }
  .cat-btn.active { color: #fff; border-bottom-color: var(--wa); }

  /* ── GALLERY SECTION ── */
  .gallery-section { padding: 3rem 0 5rem; }

  /* Stats row */
  .gallery-stats {
    display: flex; align-items: center; gap: 2rem;
    padding: 1.5rem 0 2rem; border-bottom: 1px solid var(--bdr);
    margin-bottom: 2rem; flex-wrap: wrap;
  }
  .gstat { display: flex; align-items: center; gap: .5rem; font-size: .82rem; color: var(--mid); }
  .gstat svg { width: 15px; height: 15px; flex-shrink: 0; color: var(--blue); }
  .gstat strong { font-weight: 700; color: var(--navy); }

  /* Upload / empty message (client placeholder) */
  .upload-placeholder {
    display: none; /* hidden by default — shown if no items in a category */
    flex-direction: column; align-items: center; text-align: center;
    padding: 4rem 2rem; gap: 1rem;
  }
  .upload-placeholder.visible { display: flex; }
  .upload-placeholder svg { width: 64px; height: 64px; color: var(--sky); }
  .upload-placeholder h3 { font-family: 'DM Serif Display', serif; font-size: 1.4rem; color: var(--navy); }
  .upload-placeholder p { font-size: .9rem; color: var(--mid); max-width: 360px; line-height: 1.7; }

  /* ── MASONRY GRID ── */
  .masonry-grid {
    columns: 4; column-gap: 12px;
    transition: all .3s;
  }
  .masonry-item {
    break-inside: avoid; margin-bottom: 12px;
    position: relative; overflow: hidden;
    border-radius: var(--r12);
    cursor: pointer;
    background: var(--skylt);
  }
  .masonry-item img, .masonry-item video {
    width: 100%; height: auto; display: block;
    transition: transform .5s cubic-bezier(.4,0,.2,1);
  }
  .masonry-item:hover img, .masonry-item:hover video { transform: scale(1.04); }

  /* Item overlay */
  .item-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(15,45,107,.75) 0%, transparent 50%);
    opacity: 0; transition: opacity .3s;
    display: flex; align-items: flex-end; padding: 1rem;
  }
  .masonry-item:hover .item-overlay { opacity: 1; }
  .item-meta { display: flex; flex-direction: column; gap: .2rem; }
  .item-caption { font-size: .8rem; font-weight: 600; color: #fff; line-height: 1.3; }
  .item-cat-tag {
    display: inline-flex; align-items: center; gap: .3rem;
    font-size: .65rem; font-weight: 600; color: rgba(255,255,255,.8);
    background: rgba(255,255,255,.15); padding: .15rem .5rem; border-radius: 20px;
    width: fit-content;
  }

  /* Video play button */
  .play-btn {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
    width: 52px; height: 52px;
    background: rgba(255,255,255,.92); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: transform .2s, background .2s;
    pointer-events: none;
  }
  .play-btn svg { width: 20px; height: 20px; margin-left: 3px; }
  .masonry-item:hover .play-btn { transform: translate(-50%,-50%) scale(1.1); background: #fff; }

  /* ── LIGHTBOX ── */
  .lightbox {
    position: fixed; inset: 0; z-index: 999;
    background: rgba(0,0,0,.95);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: all .3s;
    padding: 1rem;
  }
  .lightbox.open { opacity: 1; visibility: visible; }
  .lb-inner {
    position: relative; max-width: 90vw; max-height: 90vh;
    display: flex; align-items: center; justify-content: center;
  }
  .lb-media {
    max-width: 100%; max-height: 86vh;
    border-radius: var(--r12);
    object-fit: contain;
    transition: opacity .3s;
  }
  video.lb-media { width: 100%; height: auto; display: block !important; }
  .lb-close {
    position: fixed; top: 1.25rem; right: 1.25rem;
    width: 42px; height: 42px; border-radius: 50%;
    background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
    color: #fff; font-size: 1.1rem;
    display: flex; align-items: center; justify-content: center;
    transition: background .2s;
  }
  .lb-close:hover { background: rgba(255,255,255,.22); }
  .lb-prev, .lb-next {
    position: fixed; top: 50%; transform: translateY(-50%);
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
    color: #fff; display: flex; align-items: center; justify-content: center;
    transition: background .2s; z-index: 1000;
  }
  .lb-prev { left: 1rem; }
  .lb-next { right: 1rem; }
  .lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,.25); }
  .lb-prev svg, .lb-next svg { width: 20px; height: 20px; }
  .lb-caption {
    position: fixed; bottom: 1.25rem; left: 50%; transform: translateX(-50%);
    background: rgba(0,0,0,.6); backdrop-filter: blur(8px);
    color: #fff; font-size: .82rem; font-weight: 400;
    padding: .5rem 1.25rem; border-radius: 20px;
    max-width: 90vw; text-align: center;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  }
  .lb-counter {
    position: fixed; top: 1.25rem; left: 50%; transform: translateX(-50%);
    background: rgba(0,0,0,.5); color: rgba(255,255,255,.7);
    font-size: .75rem; font-weight: 500; padding: .35rem .9rem; border-radius: 20px;
  }

  /* ── CTA STRIP ── */
  .gallery-cta {
    background: var(--navy); padding: 3.5rem 1.5rem;
    text-align: center;
  }
  .gallery-cta h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem); color: #fff; margin-bottom: .75rem;
  }
  .gallery-cta p { font-size: .9rem; color: rgba(255,255,255,.65); margin-bottom: 1.75rem; line-height: 1.7; max-width: 480px; margin-left: auto; margin-right: auto; }
  .wa-btn-lg {
    display: inline-flex; align-items: center; gap: .55rem;
    padding: .9rem 2rem; background: var(--wa); color: #fff;
    font-size: .95rem; font-weight: 600; border-radius: var(--r6);
    transition: all .2s;
  }
  .wa-btn-lg svg { width: 20px; height: 20px; }
  .wa-btn-lg:hover { background: var(--wa2); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(37,211,102,.4); }

  /* ── FLOATING WA ── */
  .float-wa {
    position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 190;
    display: flex; align-items: center; gap: .5rem;
    background: var(--wa); color: #fff; padding: .75rem 1.25rem;
    border-radius: 30px; font-size: .82rem; font-weight: 600;
    box-shadow: 0 6px 24px rgba(37,211,102,.4); transition: all .2s;
  }
  .float-wa svg { width: 22px; height: 22px; flex-shrink: 0; }
  .float-wa:hover { background: var(--wa2); transform: translateY(-2px); }

  /* ── RESPONSIVE ── */
  @media (max-width: 1100px) { .masonry-grid { columns: 3; } }
  @media (max-width: 900px) {
    .g-nav { display: none; }
    .hamburger { display: flex; }
    .masonry-grid { columns: 2; }
    .lb-prev { left: .5rem; }
    .lb-next { right: .5rem; }
  }
  @media (max-width: 500px) {
    .masonry-grid { columns: 1; }
    .float-wa span { display: none; }
    .float-wa { border-radius: 50%; padding: .9rem; }
    .float-wa svg { width: 26px; height: 26px; }
    .lb-media { max-height: 80vh; }
    .lb-inner { width: 100%; max-width: 100%; }
    video.lb-media { width: 100%; height: auto; }
  }

/* ── MISSING CLASSES (moved from inline styles) ── */
.header-right {
  display: flex; align-items: center; gap: .75rem; flex-shrink: 0;
}
.filter-label {
  margin-left: auto; font-size: .78rem; color: var(--light);
}
.footer-back {
  font-size: .78rem; color: rgba(255,255,255,.4);
  transition: color .2s; text-decoration: none;
}
.footer-back:hover { color: rgba(255,255,255,.7); }