<style>
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --bg-nav:   #191970;
      --bg-hover: #2a2aa8;
      --text:     #f0f4ff;
      --accent:   #6b8cff;
      --bg-page:  #0e0e2c;
      --trans:    0.22s ease;
    }

    html {
      scroll-behavior: smooth;
      -webkit-text-size-adjust: 100%;
    }

    body {
      font-family: 'Funnel Display', sans-serif;
      background: var(--bg-page);
      color: var(--text);
      min-height: 100vh;
      overflow-x: hidden;
      -webkit-overflow-scrolling: touch;
    }

    /* ── NAV ── */
    nav {
      background: var(--bg-nav);
      width: 100%;
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 2px 18px rgba(0,0,50,0.55);
    }

    .nav-inner {
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 0 1.5rem;
      height: 60px;
    }

    .nav-links {
      display: flex;
      gap: 0.2rem;
      list-style: none;
    }

    .nav-links a {
      display: block;
      padding: 0.5rem 1.2rem;
      color: var(--text);
      text-decoration: none;
      font-size: clamp(0.85rem, 1.5vw, 1.05rem);
      font-weight: 500;
      letter-spacing: 0.04em;
      border-radius: 6px;
      position: relative;
      transition: background var(--trans), transform var(--trans);
      white-space: nowrap;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: 4px;
      left: 50%;
      transform: translateX(-50%) scaleX(0);
      width: 60%;
      height: 2px;
      background: var(--accent);
      border-radius: 2px;
      transition: transform var(--trans);
    }

    .nav-links a:hover,
    .nav-links a.active {
      background: var(--bg-hover);
      transform: translateY(-1px);
    }

    .nav-links a:hover::after,
    .nav-links a.active::after {
      transform: translateX(-50%) scaleX(1);
    }

    /* Hamburger */
    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 0.5rem;
      border-radius: 6px;
      transition: background var(--trans);
      -webkit-tap-highlight-color: transparent;
    }

    .hamburger:hover { background: var(--bg-hover); }

    .hamburger span {
      display: block;
      width: 26px;
      height: 2.5px;
      background: var(--text);
      border-radius: 2px;
      transition: transform 0.3s ease, opacity 0.3s ease;
      transform-origin: center;
    }

    .hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

    /* Mobile drawer */
    .mobile-menu {
      display: none;
      flex-direction: column;
      background: var(--bg-nav);
      padding: 0.5rem 0 1rem;
      border-top: 1px solid rgba(255,255,255,0.08);
    }

    .mobile-menu.open { display: flex; }

    .mobile-menu a {
      display: block;
      padding: 0.85rem 1.5rem;
      color: var(--text);
      text-decoration: none;
      font-size: 1.05rem;
      font-weight: 500;
      letter-spacing: 0.04em;
      text-align: left;
      border-left: 3px solid transparent;
      transition: background var(--trans), padding-left var(--trans), border-color var(--trans);
      -webkit-tap-highlight-color: transparent;
    }

    .mobile-menu a:active {
      background: rgba(255,255,255,0.06);
      border-left-color: var(--accent);
    }

    @media (max-width: 1000px) {
      .nav-inner { justify-content: space-between; }
      .nav-links  { display: none; }
      .hamburger  { display: flex; }
    }

    /* ── HERO ── */
    .hero {
      position: relative;
      width: 100%;
      height: 100svh;
      min-height: 400px;
      overflow: hidden;
    }

    .hero img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      filter: brightness(0.62) saturate(1.2);
      animation: slowZoom 16s ease-out forwards;
    }

    @keyframes slowZoom {
      from { transform: scale(1.06); }
      to   { transform: scale(1.00); }
    }

    .hero-text {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 1.5rem;
    }

    .hero-text h1 {
      font-size: clamp(2.2rem, 10vw, 6.5rem);
      font-weight: 700;
      letter-spacing: 0.07em;
      text-shadow: 0 4px 40px rgba(0,0,0,0.65);
      animation: fadeUp 1.2s ease both;
      line-height: 1.1;
    }

    .hero-text p {
      font-size: clamp(0.75rem, 2.5vw, 1.35rem);
      font-weight: 300;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      opacity: 0.78;
      margin-top: 1rem;
      text-shadow: 0 2px 14px rgba(0,0,0,0.45);
      animation: fadeUp 1.4s 0.2s ease both;
    }

    .hero-scroll {
      position: absolute;
      bottom: max(2rem, env(safe-area-inset-bottom, 2rem));
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      opacity: 0.45;
      animation: fadeUp 1.8s 0.6s ease both;
    }

    .hero-scroll span {
      font-size: 0.68rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
    }

    .hero-scroll .arrow {
      width: 18px;
      height: 18px;
      border-right: 2px solid var(--text);
      border-bottom: 2px solid var(--text);
      transform: rotate(45deg);
      animation: bounce 1.9s infinite;
    }

    @keyframes bounce {
      0%, 100% { transform: rotate(45deg) translateY(0); }
      50%       { transform: rotate(45deg) translateY(6px); }
    }

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

    /* ── INTRO ── */
    .intro {
      max-width: 660px;
      margin: clamp(3rem, 8vw, 6rem) auto;
      text-align: center;
      padding: 0 1.5rem;
    }

    .intro h2 {
      font-size: clamp(1.3rem, 3.5vw, 1.9rem);
      font-weight: 600;
      letter-spacing: 0.06em;
      margin-bottom: 1.1rem;
      color: #c8d3ff;
    }

    .intro p {
      font-size: clamp(0.9rem, 2vw, 1.05rem);
      font-weight: 300;
      line-height: 1.8;
      color: rgba(240,244,255,0.6);
    }

    /* ── GALLERY GRID ── */
    .gallery {
      padding: 0 1.5rem clamp(3rem, 8vw, 6rem);
      max-width: 1200px;
      margin: 0 auto;
    }

    .section-title {
      font-size: clamp(1.1rem, 2.5vw, 1.8rem);
      font-weight: 600;
      letter-spacing: 0.14em;
      text-align: center;
      text-transform: uppercase;
      margin-bottom: 2rem;
      color: #c8d3ff;
      position: relative;
    }

    .section-title::after {
      content: '';
      display: block;
      width: 40px;
      height: 2px;
      background: var(--accent);
      margin: 0.6rem auto 0;
      border-radius: 2px;
    }

    .grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: 240px 240px;
      gap: 0.75rem;
    }

    .card {
      position: relative;
      overflow: hidden;
      border-radius: 10px;
      cursor: pointer;
      background: #111130;
      -webkit-tap-highlight-color: transparent;
    }

    .card.tall { grid-row: span 2; }
    .card.wide { grid-column: span 2; }

    .card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      filter: brightness(0.82) saturate(1.08);
      transition: transform 0.6s ease, filter 0.6s ease;
    }

    .card:hover img,
    .card:active img {
      transform: scale(1.08);
      filter: brightness(1) saturate(1.22);
    }

    .card-label {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 2rem 1rem 0.75rem;
      background: linear-gradient(to top, rgba(5,5,30,0.82) 0%, transparent 100%);
      font-size: clamp(0.65rem, 1.5vw, 0.8rem);
      letter-spacing: 0.16em;
      text-transform: uppercase;
      font-weight: 500;
      color: #e8edff;
    }

    @media (max-width: 900px) {
      .grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
      }
      .card, .card.tall, .card.wide {
        grid-row: unset !important;
        grid-column: unset !important;
        height: 220px;
      }
    }

    @media (max-width: 520px) {
      .grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
      }
      .card, .card.tall, .card.wide {
        height: 160px;
      }
    }

    @media (max-width: 340px) {
      .grid { grid-template-columns: 1fr; }
      .card, .card.tall, .card.wide { height: 200px; }
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --bg-nav:   #191970;
      --bg-hover: #2a2aa8;
      --text:     #f0f4ff;
      --accent:   #6b8cff;
      --bg-page:  #0a0a1e;
      --trans:    0.22s ease;
    }

    html {
      scroll-behavior: smooth;
      -webkit-text-size-adjust: 100%;
      height: 100%;
    }

    body {
      font-family: 'Funnel Display', sans-serif;
      background: var(--bg-page);
      color: var(--text);
      min-height: 100%;
      overflow-x: hidden;
      -webkit-overflow-scrolling: touch;
      overscroll-behavior-y: contain;
    }

    /* ── NAV ── */
    nav {
      background: var(--bg-nav);
      width: 100%;
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 2px 18px rgba(0,0,50,0.55);
    }

    .nav-inner {
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 0 1.5rem;
      height: 60px;
    }

    .nav-links { display: flex; gap: 0.2rem; list-style: none; }

    .nav-links a {
      display: block;
      padding: 0.5rem 1.2rem;
      color: var(--text);
      text-decoration: none;
      font-size: clamp(0.85rem, 1.5vw, 1.05rem);
      font-weight: 500;
      letter-spacing: 0.04em;
      border-radius: 6px;
      position: relative;
      white-space: nowrap;
      transition: background var(--trans), transform var(--trans);
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: 4px;
      left: 50%;
      transform: translateX(-50%) scaleX(0);
      width: 60%;
      height: 2px;
      background: var(--accent);
      border-radius: 2px;
      transition: transform var(--trans);
    }

    .nav-links a:hover,
    .nav-links a.active {
      background: var(--bg-hover);
      transform: translateY(-1px);
    }

    .nav-links a:hover::after,
    .nav-links a.active::after {
      transform: translateX(-50%) scaleX(1);
    }

    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 0.5rem;
      border-radius: 6px;
      transition: background var(--trans);
      -webkit-tap-highlight-color: transparent;
    }

    .hamburger:hover { background: var(--bg-hover); }

    .hamburger span {
      display: block;
      width: 26px;
      height: 2.5px;
      background: var(--text);
      border-radius: 2px;
      transition: transform 0.3s ease, opacity 0.3s ease;
      transform-origin: center;
    }

    .hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

    .mobile-menu {
      display: none;
      flex-direction: column;
      background: var(--bg-nav);
      padding: 0.5rem 0 1rem;
      border-top: 1px solid rgba(255,255,255,0.08);
    }

    .mobile-menu.open { display: flex; }

    .mobile-menu a {
      display: block;
      padding: 0.85rem 1.5rem;
      color: var(--text);
      text-decoration: none;
      font-size: 1.05rem;
      font-weight: 500;
      letter-spacing: 0.04em;
      border-left: 3px solid transparent;
      transition: background var(--trans), border-color var(--trans);
      -webkit-tap-highlight-color: transparent;
    }

    .mobile-menu a:active {
      background: rgba(255,255,255,0.06);
      border-left-color: var(--accent);
    }

    @media (max-width: 1000px) {
      .nav-inner { justify-content: space-between; }
      .nav-links  { display: none; }
      .hamburger  { display: flex; }
    }

    /* ── PAGE HEADER ── */
    .page-header {
      padding: clamp(3rem, 8vw, 5rem) 1.5rem clamp(2rem, 4vw, 3rem);
      text-align: center;
      position: relative;
    }

    .page-header::before {
      content: '';
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 1px;
      height: 3rem;
      background: linear-gradient(to bottom, transparent, var(--accent));
    }

    .page-header h1 {
      font-size: clamp(2.2rem, 8vw, 5.5rem);
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      background: linear-gradient(135deg, #e8edff 0%, var(--accent) 55%, #a8c0ff 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: fadeDown 0.9s ease both;
      line-height: 1.1;
    }

    .page-header p {
      margin-top: 0.8rem;
      font-size: clamp(0.72rem, 2vw, 0.95rem);
      font-weight: 300;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(240,244,255,0.4);
      animation: fadeDown 1.1s 0.15s ease both;
    }

    @keyframes fadeDown {
      from { opacity: 0; transform: translateY(-20px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* ── FILTER BAR ── */
    .filter-wrap {
      width: 100%;
      overflow: hidden;
      padding-bottom: 0.5rem;
    }

    .filters {
      display: flex;
      gap: 0.5rem;
      padding: 0 1.5rem 1rem;
      animation: fadeDown 1.2s 0.25s ease both;
      overflow-x: auto;
      overflow-y: hidden;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      -ms-overflow-style: none;
      scroll-snap-type: x proximity;
      justify-content: safe center;
    }

    .filters::-webkit-scrollbar { display: none; }

    .filter-btn {
      flex-shrink: 0;
      padding: 0.44rem clamp(0.8rem, 2vw, 1.3rem);
      border: 1px solid rgba(107,140,255,0.35);
      border-radius: 999px;
      background: transparent;
      color: rgba(240,244,255,0.55);
      font-family: 'Funnel Display', sans-serif;
      font-size: clamp(0.72rem, 1.5vw, 0.82rem);
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      cursor: pointer;
      transition: all 0.25s ease;
      scroll-snap-align: start;
      -webkit-tap-highlight-color: transparent;
      white-space: nowrap;
    }

    .filter-btn .count {
      margin-left: 0.35rem;
      font-size: 0.65rem;
      opacity: 0.6;
    }

    .filter-btn:hover,
    .filter-btn.active {
      background: var(--accent);
      border-color: var(--accent);
      color: #fff;
      box-shadow: 0 0 18px rgba(107,140,255,0.38);
    }

    .filter-btn.active .count { opacity: 0.85; }

    .result-info {
      text-align: center;
      font-size: clamp(0.68rem, 1.5vw, 0.78rem);
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(240,244,255,0.26);
      padding: 0 1.5rem clamp(1.5rem, 4vw, 3rem);
    }

    /* ── MASONRY ── */
    .gallery-wrap {
      padding: 0 clamp(0.75rem, 2vw, 1.5rem) clamp(4rem, 8vw, 6rem);
      max-width: 1500px;
      margin: 0 auto;
      touch-action: pan-y;
    }

    .masonry {
      columns: 4;
      column-gap: clamp(0.5rem, 1vw, 1rem);
    }

    @media (max-width: 1200px) { .masonry { columns: 3; } }
    @media (max-width: 750px)  { .masonry { columns: 2; } }
    @media (max-width: 380px)  { .masonry { columns: 1; } }

    /* ── PHOTO CARD ── */
    .photo-item {
      break-inside: avoid;
      margin-bottom: clamp(0.5rem, 1vw, 1rem);
      border-radius: clamp(6px, 1.5vw, 12px);
      overflow: hidden;
      position: relative;
      cursor: pointer;
      background: #111130;
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.5s ease, transform 0.5s ease;
      touch-action: pan-y;
      -webkit-tap-highlight-color: transparent;
    }

    .photo-item.visible { opacity: 1; transform: translateY(0); }
    .photo-item.hidden  { display: none; }

    .photo-item::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, #111130 25%, #1c1c50 50%, #111130 75%);
      background-size: 200% 100%;
      animation: shimmer 1.6s infinite;
      z-index: 0;
    }

    .photo-item.loaded::before { display: none; }

    @keyframes shimmer {
      0%   { background-position: 200% 0; }
      100% { background-position: -200% 0; }
    }

    .photo-item img {
      position: relative;
      z-index: 1;
      width: 100%;
      height: auto;
      display: block;
      filter: brightness(0.88) saturate(1.05);
      transition: transform 0.55s cubic-bezier(0.25,0.46,0.45,0.94), filter 0.55s ease;
      pointer-events: none;
      user-select: none;
      -webkit-user-drag: none;
    }

    .photo-item:hover img {
      transform: scale(1.07);
      filter: brightness(1.05) saturate(1.22);
    }

    @media (hover: none) {
      .photo-item:active img {
        transform: scale(1.03);
        filter: brightness(1) saturate(1.15);
      }
    }

    .photo-overlay {
      position: absolute;
      inset: 0;
      z-index: 2;
      background: linear-gradient(to top, rgba(5,5,30,0.9) 0%, rgba(5,5,30,0.04) 55%, transparent 100%);
      opacity: 0;
      transition: opacity 0.38s ease;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: clamp(0.7rem, 2vw, 1.2rem) clamp(0.7rem, 2vw, 1rem);
      pointer-events: none;
    }

    .photo-item:hover .photo-overlay { opacity: 1; }

    @media (hover: none) { .photo-overlay { opacity: 0.75; } }

    .photo-title {
      font-size: clamp(0.7rem, 1.5vw, 0.88rem);
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #fff;
      transform: translateY(6px);
      transition: transform 0.35s ease;
    }

    .photo-tag {
      font-size: clamp(0.6rem, 1.2vw, 0.68rem);
      font-weight: 400;
      letter-spacing: 0.12em;
      color: var(--accent);
      margin-top: 0.2rem;
      transform: translateY(6px);
      transition: transform 0.4s 0.05s ease;
    }

    .photo-item:hover .photo-title,
    .photo-item:hover .photo-tag { transform: translateY(0); }

    .photo-expand {
      position: absolute;
      top: 0.6rem;
      right: 0.6rem;
      z-index: 3;
      width: clamp(26px, 4vw, 30px);
      height: clamp(26px, 4vw, 30px);
      border-radius: 50%;
      background: rgba(255,255,255,0.18);
      backdrop-filter: blur(6px);
      border: none;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      cursor: pointer;
      transition: opacity 0.3s ease, background 0.2s ease;
      -webkit-tap-highlight-color: transparent;
    }

    .photo-expand svg {
      width: 12px;
      height: 12px;
      stroke: #fff;
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      pointer-events: none;
    }

    .photo-item:hover .photo-expand { opacity: 1; }
    .photo-expand:hover { background: var(--accent); }

    @media (hover: none) { .photo-expand { opacity: 0.7; } }

    /* ── LIGHTBOX ── */
    .lightbox {
      position: fixed;
      inset: 0;
      background: rgba(4,4,18,0.97);
      backdrop-filter: blur(14px);
      z-index: 9000;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: clamp(1rem, 3vw, 2rem);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.32s ease;
      overscroll-behavior: contain;
      touch-action: none;
    }

    .lightbox.open { opacity: 1; pointer-events: all; }

    .lb-img-wrap {
      position: relative;
      border-radius: clamp(8px, 2vw, 14px);
      overflow: hidden;
      box-shadow: 0 30px 80px rgba(0,0,0,0.8);
      transform: scale(0.92);
      transition: transform 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
      max-width: min(92vw, 1200px);
      max-height: 86vh;
    }

    .lightbox.open .lb-img-wrap { transform: scale(1); }

    .lb-img-wrap img {
      display: block;
      max-width: min(92vw, 1200px);
      max-height: 86vh;
      width: auto;
      height: auto;
      object-fit: contain;
      transition: transform 0.15s ease;
      will-change: transform;
      touch-action: pinch-zoom;
      user-select: none;
      -webkit-user-drag: none;
    }

    .lb-info {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 3rem 1.5rem 1rem;
      background: linear-gradient(to top, rgba(5,5,30,0.92) 0%, transparent 100%);
    }

    .lb-info h3 {
      font-size: clamp(0.9rem, 2.5vw, 1.1rem);
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .lb-info span {
      font-size: clamp(0.68rem, 1.5vw, 0.75rem);
      color: var(--accent);
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }

    .lb-close {
      position: fixed;
      top: max(1.2rem, env(safe-area-inset-top, 1.2rem));
      right: 1.2rem;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.18);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 1.2rem;
      font-family: sans-serif;
      line-height: 1;
      transition: background 0.2s ease;
      z-index: 9010;
      -webkit-tap-highlight-color: transparent;
    }

    .lb-close:hover,
    .lb-close:active { background: rgba(107,140,255,0.5); }

    .lb-nav {
      position: fixed;
      top: 50%;
      transform: translateY(-50%);
      width: clamp(40px, 6vw, 50px);
      height: clamp(40px, 6vw, 50px);
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.18);
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s ease;
      z-index: 9010;
      -webkit-tap-highlight-color: transparent;
    }

    .lb-nav:hover,
    .lb-nav:active { background: rgba(107,140,255,0.45); }

    .lb-nav.prev { left: clamp(0.5rem, 2vw, 1.2rem); }
    .lb-nav.next { right: clamp(0.5rem, 2vw, 1.2rem); }

    .lb-nav svg {
      width: 20px;
      height: 20px;
      stroke: #fff;
      fill: none;
      stroke-width: 2.5;
      stroke-linecap: round;
      stroke-linejoin: round;
      pointer-events: none;
    }

    .lb-counter {
      position: fixed;
      bottom: max(1.5rem, env(safe-area-inset-bottom, 1.5rem));
      left: 50%;
      transform: translateX(-50%);
      font-size: 0.75rem;
      letter-spacing: 0.15em;
      color: rgba(240,244,255,0.4);
      z-index: 9010;
    }

    .lb-img-wrap.swiping { transition: transform 0.08s linear; }

    /* ── FOOTER ── */
    footer {
      text-align: center;
      padding: 2.5rem 1rem max(2rem, env(safe-area-inset-bottom, 2rem));
      font-size: 0.78rem;
      letter-spacing: 0.1em;
      color: rgba(200,210,255,0.25);
      border-top: 1px solid rgba(255,255,255,0.05);
    }
  </style>







