
  /* ── prefix: gal- ── */
  .gal-breadcrumb {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 11px 60px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-soft);
    flex-wrap: wrap;
  }

  .gal-breadcrumb a {
    color: var(--blue-light);
    text-decoration: none;
    font-weight: 600;
    transition: color .2s;
  }

  .gal-breadcrumb a:hover {
    color: var(--blue);
  }

  .gal-bc-sep {
    opacity: .4;
  }

  .gal-bc-cur {
    color: var(--text-mid);
    font-weight: 500;
  }

  .gal-hero {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 55%, #2660B8 100%);
    padding: 52px 60px;
    position: relative;
    overflow: hidden;
  }

  .gal-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: .05;
    background-image: linear-gradient(rgba(255, 255, 255, .8) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .8) 1px, transparent 1px);
    background-size: 50px 50px;
  }

  .gal-hero-c1 {
    position: absolute;
    right: -80px;
    top: -80px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
  }

  .gal-hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
  }

  .gal-hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(200, 146, 42, .2);
    border: 1px solid rgba(200, 146, 42, .35);
    padding: 5px 16px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 14px;
  }

  .gal-hero-title {
    font-family: 'Playfair Display';
    font-size: clamp(28px, 4vw, 52px);
    font-weight: 800;
    color: white;
    line-height: 1.15;
  }

  .gal-hero-title span {
    color: var(--gold-light);
  }

  .gal-hero-sub {
    font-size: 14px;
    color: rgba(255, 255, 255, .65);
    margin-top: 8px;
  }

  .gal-hero-stats {
    display: flex;
    gap: 1px;
    background: rgba(255, 255, 255, .12);
    border-radius: 14px;
    overflow: hidden;
    flex-shrink: 0;
    backdrop-filter: blur(8px);
    align-self: flex-start;
  }

  .gal-hstat {
    padding: 16px 22px;
    background: rgba(255, 255, 255, .06);
    text-align: center;
  }

  .gal-hstat-num {
    font-family: 'Playfair Display';
    font-size: 24px;
    font-weight: 800;
    color: var(--gold-light);
    line-height: 1;
  }

  .gal-hstat-lbl {
    font-size: 10px;
    color: rgba(255, 255, 255, .55);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 3px;
  }

  .gal-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 44px 60px 80px;
  }

  /* FILTER */
  .gal-filterbar {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 32px;
  }

  .gal-filter-btn {
    padding: 9px 20px;
    border-radius: 100px;
    border: 1.5px solid var(--border);
    background: var(--white);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-mid);
    cursor: pointer;
    transition: all .2s;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .gal-filter-btn:hover {
    border-color: var(--blue-light);
    color: var(--blue-light);
    background: var(--blue-pale);
  }

  .gal-filter-btn.active {
    background: var(--blue);
    border-color: var(--blue);
    color: white;
  }

  .gal-filter-count {
    font-size: 10px;
    font-weight: 800;
    padding: 1px 7px;
    border-radius: 100px;
  }

  .gal-filter-btn.active .gal-filter-count {
    background: rgba(255, 255, 255, .2);
  }

  .gal-filter-btn:not(.active) .gal-filter-count {
    background: var(--bg);
    color: var(--text-soft);
  }

  /* MASONRY */
  .gal-grid {
    columns: 4;
    column-gap: 14px;
  }

  @media(max-width:1100px) {
    .gal-grid {
      columns: 3;
    }
  }

  @media(max-width:700px) {
    .gal-grid {
      columns: 2;
    }
  }

  @media(max-width:420px) {
    .gal-grid {
      columns: 1;
    }
  }

  /* ITEM */
  .gal-item {
    break-inside: avoid;
    margin-bottom: 14px;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background: var(--blue-soft);
    transition: transform .28s, box-shadow .28s;
  }

  .gal-item:hover {
    transform: scale(1.015);
    box-shadow: var(--shadow-lg);
  }

  .gal-item.gal-hidden {
    display: none;
  }

  .gal-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform .4s;
  }

  .gal-item:hover img {
    transform: scale(1.06);
  }

  .gal-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(15, 31, 61, .82) 100%);
    opacity: 0;
    transition: opacity .28s;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 14px 12px;
  }

  .gal-item:hover .gal-overlay {
    opacity: 1;
  }

  .gal-ov-kat {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold-light);
    margin-bottom: 3px;
  }

  .gal-ov-title {
    font-size: 12px;
    font-weight: 600;
    color: white;
    line-height: 1.35;
  }

  .gal-zoom {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .2);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .22s, transform .22s;
    transform: scale(.8);
    color: white;
    font-size: 13px;
  }

  .gal-item:hover .gal-zoom {
    opacity: 1;
    transform: scale(1);
  }

  .gal-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 3px 10px;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 700;
    background: rgba(0, 0, 0, .35);
    backdrop-filter: blur(6px);
    color: white;
    transition: opacity .22s;
  }

  .gal-item:hover .gal-badge {
    opacity: 0;
  }

  /* EMPTY */
  .gal-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-soft);
  }

  .gal-empty-icon {
    font-size: 52px;
    opacity: .25;
    margin-bottom: 12px;
  }

  /* ══ LIGHTBOX ══ */
  .gal-lb {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(5, 12, 30, .95);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s, visibility .25s;
  }

  .gal-lb.show {
    opacity: 1;
    visibility: visible;
  }

  .gal-lb-inner {
    position: relative;
    max-width: 960px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .gal-lb-img-box {
    border-radius: 14px;
    overflow: hidden;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
  }

  .gal-lb-img-box img {
    max-width: 100%;
    max-height: 76vh;
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;
  }

  .gal-lb-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .gal-lb-kat {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold-light);
    margin-bottom: 3px;
  }

  .gal-lb-title {
    font-size: 15px;
    font-weight: 700;
    color: white;
  }

  .gal-lb-counter {
    font-size: 13px;
    color: rgba(255, 255, 255, .4);
    flex-shrink: 0;
  }

  /* Nav */
  .gal-lb-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .15);
    color: white;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
  }

  .gal-lb-btn:hover {
    background: rgba(255, 255, 255, .22);
  }

  .gal-lb-prev {
    left: -64px;
  }

  .gal-lb-next {
    right: -64px;
  }

  .gal-lb-close {
    position: absolute;
    top: -48px;
    right: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .15);
    color: white;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
  }

  .gal-lb-close:hover {
    background: rgba(255, 255, 255, .25);
  }

  /* RESPONSIVE */
  @media(max-width:1100px) {
    .gal-breadcrumb {
      padding: 10px 32px;
    }

    .gal-hero {
      padding: 44px 32px;
    }

    .gal-wrap {
      padding: 28px 32px 60px;
    }
  }

  @media(max-width:768px) {
    .gal-breadcrumb {
      padding: 10px 20px;
    }

    .gal-hero {
      padding: 40px 20px;
    }

    .gal-wrap {
      padding: 20px 20px 48px;
    }

    .gal-hero-stats {
      display: none;
    }

    .gal-lb {
      padding: 20px 56px;
    }

    .gal-lb-prev {
      left: -44px;
    }

    .gal-lb-next {
      right: -44px;
    }
  }

  @media(max-width:480px) {
    .gal-lb {
      padding: 20px 12px;
    }

    .gal-lb-prev,
    .gal-lb-next {
      display: none;
    }
  }
