  .gal-root {
    font-family: 'DM Sans', sans-serif;
    background: #f5f1e8;
    padding: 0 0 60px;
  }

  .gal-hero {
    padding: 48px 40px 32px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 16px;
  }

  .gal-label {
    font-size: 1rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #8a7d5a;
    margin-bottom: 10px;
  }

  .gal-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 5vw, 52px);
    color: #1e1a10;
    line-height: 1.1;
    font-weight: 400;
  }

  .gal-title em { color: #7a8c2e; font-style: italic; }

  .gal-subtitle {
    font-size: 1.2rem;
    color: #8a7d5a;
    max-width: 280px;
    line-height: 1.6;
    text-align: right;
  }

  .gal-filters {
    display: flex;
    gap: 8px;
    padding: 0 40px 28px;
    flex-wrap: wrap;
  }

  .gf-btn {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 100px;
    border: 1.5px solid #c5b98a;
    background: transparent;
    color: #5c5030;
    cursor: pointer;
    transition: all 0.22s ease;
  }

  .gf-btn:hover { background: #e8e0cc; border-color: #a89860; }
  .gf-btn.active { background: #3d4a14; border-color: #3d4a14; color: #f5f1e8; }

  .gal-count {
    padding: 12px 40px 12px;
    font-size: 1rem;
    color: #8a7d5a;
    letter-spacing: 0.04em;
  }

  .gal-scroll-outer {
    overflow-x: auto;
    padding: 0 40px 16px;
    scrollbar-width: thin;
    scrollbar-color: #c5b98a #f5f1e8;
    -webkit-overflow-scrolling: touch;
  }

  .gal-scroll-outer::-webkit-scrollbar { height: 4px; }
  .gal-scroll-outer::-webkit-scrollbar-track { background: #ece5d0; border-radius: 4px; }
  .gal-scroll-outer::-webkit-scrollbar-thumb { background: #b5a870; border-radius: 4px; }

  .gal-track {
    display: flex;
    gap: 12px;
    min-width: max-content;
  }

  .gal-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    flex-shrink: 0;
    width: 300px;
    height: 380px;
    background: #d8d0bc;
    transition: transform 0.3s ease;
  }

  .gal-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
  }

  .gal-item:hover { transform: translateY(-4px); }
  .gal-item:hover img { transform: scale(1.05); }

  .gal-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(20,18,8,0.55) 0%, transparent 55%);
    pointer-events: none;
  }

  .gal-num {
    position: absolute;
    bottom: 12px; left: 14px;
    font-family: 'Playfair Display', serif;
    font-size: 13px;
    color: rgba(245,241,232,0.75);
    font-style: italic;
    pointer-events: none;
  }

  .gal-cat-tag {
    position: absolute;
    top: 10px; right: 10px;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: rgba(245,241,232,0.18);
    backdrop-filter: blur(8px);
    color: #f5f1e8;
    padding: 4px 10px;
    border-radius: 100px;
    pointer-events: none;
    border: 0.5px solid rgba(245,241,232,0.3);
  }

  .gal-item.hidden { display: none; }

  .gal-item.reveal { animation: fadeUp 0.35s ease both; }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* ─── LIGHTBOX — LIGHT THEME ─── */

  #lightbox {
    position: fixed;
    inset: 0;
    z-index: 50000;
    background: rgba(240, 236, 227, 0.97);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    cursor:default;
  }

  #lightbox.open {
    opacity: 1;
    visibility: visible;
  }

  /* Subtle paper texture via repeating radial */
  #lightbox::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(180,160,100,0.06) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
  }

  /* Decorative corner accents */
  #lightbox::after {
    content: '';
    position: absolute;
    inset: 24px;
    border: 1px solid rgba(45, 112, 58, 0.12);
    border-radius: 16px;
    pointer-events: none;
  }

  #lb-img-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    z-index: 1;
  }

  #lb-img-frame {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow:
      0 2px 0 rgba(255,255,255,0.9),
      0 8px 32px rgba(60,50,20,0.18),
      0 32px 64px rgba(60,50,20,0.10);
    border: 1px solid rgba(45, 112, 58, 0.15);
  }

  #lightbox img {
    display: block;
    max-width: 80vw;
    max-height: 72vh;
    object-fit: contain;
    transition: transform 0.4s ease;
  }

  /* Photo number badge on image */
  #lb-photo-badge {
    position: absolute;
    bottom: 14px;
    left: 16px;
    font-family: 'Fragment Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.2em;
    color: rgba(245,241,232,0.8);
    background: rgba(30,26,16,0.4);
    backdrop-filter: blur(10px);
    padding: 4px 12px;
    border-radius: 100px;
    border: 0.5px solid rgba(245,241,232,0.2);
  }

  /* Close button */
  #lb-close {
    position: absolute;
    top: 28px;
    right: 28px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(45, 112, 58, 0.25);
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #2d5a35;
    font-size: 18px;
    font-weight: 300;
    transition: all 0.25s ease;
    z-index: 2;
    box-shadow: 0 2px 12px rgba(60,50,20,0.12);
    line-height: 1;
    font-family: 'DM Sans', sans-serif;
  }

  #lb-close:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(255,255,255,0.95);
    box-shadow: 0 4px 20px rgba(138,92,16,0.18);
    transform: rotate(90deg);
  }

  /* Nav row */
  #lb-nav {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .lb-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(45, 112, 58, 0.25);
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #2d5a35;
    font-size: 18px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 2px 12px rgba(60,50,20,0.10);
  }

  .lb-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(255,255,255,0.95);
    transform: scale(1.12);
    box-shadow: 0 4px 20px rgba(138,92,16,0.18);
  }

  #lb-counter {
    font-family: 'Fragment Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.25em;
    color: var(--sage);
    min-width: 64px;
    text-align: center;
    text-transform: uppercase;
  }

  /* Caption strip */
  #lb-caption {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 13px;
    color: #8a7d5a;
    letter-spacing: 0.04em;
    text-align: center;
    min-height: 18px;
  }