/* ══════════════════════════════════════════════════════════════
   gallery-album.css  —  Album detail page styles
   All classes prefixed  ga-  to guarantee zero conflicts
   Sections:
   1. Page background
   2. Hero Banner (album-specific: dark navy)
   3. Breadcrumb
   4. Page wrap + stats bar
   5. Photo grid + view toggle
   6. Video grid
   7. Section divider
   8. Related albums
   9. Lightbox
   10. Toast
   11. Responsive
══════════════════════════════════════════════════════════════ */

/* ──────────────────────────────────────────
   KEYFRAMES  (ga- prefix)
─────────────────────────────────────────── */
@keyframes ga-slideRight {
  from { opacity: 0; transform: translateX(-36px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes ga-slideLeft {
  from { opacity: 0; transform: translateX(36px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes ga-fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ──────────────────────────────────────────
   PAGE BG
─────────────────────────────────────────── */
.ga-page-bg { background: #f0f2f6; }

/* ──────────────────────────────────────────
   1. ALBUM HERO
─────────────────────────────────────────── */
.ga-hero {
  background: var(--navy);
  border-bottom: 3px solid var(--red);
  padding: 52px 0 48px;
  position: relative;
  overflow: hidden;
}
.ga-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -55deg, transparent, transparent 40px,
    rgba(255,255,255,.025) 40px, rgba(255,255,255,.025) 41px
  );
  pointer-events: none;
}
/* Red radial glow top-right */
.ga-hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230,57,70,.1) 0%, transparent 70%);
  pointer-events: none;
}
.ga-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: ga-fadeUp .65s ease forwards .05s;
}
.ga-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.ga-eyebrow::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--red);
  border-radius: 2px;
  flex-shrink: 0;
}
.ga-hero-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -.02em;
  margin-bottom: 14px;
}
.ga-hero-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.ga-meta-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .76rem;
  color: rgba(255,255,255,.55);
  font-weight: 500;
}
.ga-meta-item svg {
  width: 14px; height: 14px;
  stroke: rgba(255,255,255,.45); fill: none;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
.ga-meta-divider {
  width: 1px; height: 14px;
  background: rgba(255,255,255,.15);
}
.ga-type-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 4px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.ga-type-badge svg {
  width: 12px; height: 12px;
  stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.ga-type-photo { background: rgba(255,255,255,.12); color: #fff; }
.ga-type-video { background: var(--red); color: #fff; }

/* Action buttons */
.ga-hero-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}
.ga-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: .76rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  font-family: 'Outfit', sans-serif;
  letter-spacing: .03em;
  white-space: nowrap;
  transition: all .18s;
  text-decoration: none;
}
.ga-btn svg {
  width: 14px; height: 14px;
  stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.ga-btn-primary { background: var(--red); color: #fff; }
.ga-btn-primary:hover { background: #a80d25; }
.ga-btn-ghost {
  background: rgba(255,255,255,.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,.2);
}
.ga-btn-ghost:hover { background: rgba(255,255,255,.18); }

/* ──────────────────────────────────────────
   2. BREADCRUMB
─────────────────────────────────────────── */
.ga-breadcrumb {
  background: #fff;
  border-bottom: 1px solid rgba(13,27,62,.07);
  padding: 13px 60px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .76rem;
  font-weight: 500;
}
.ga-breadcrumb a { color: var(--navy); text-decoration: none; transition: color .14s; }
.ga-breadcrumb a:hover { color: var(--red); }
.ga-bc-sep { color: #ced5e0; }
.ga-bc-cur { color: var(--red); font-weight: 600; }

/* ──────────────────────────────────────────
   3. PAGE WRAP
─────────────────────────────────────────── */
.ga-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 44px 60px 80px;
}

/* ──────────────────────────────────────────
   4. STATS BAR
─────────────────────────────────────────── */
.ga-stats-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border: 1px solid rgba(13,27,62,.09);
  border-radius: 10px;
  padding: 18px 28px;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 16px;
  opacity: 0;
  animation: ga-fadeUp .6s ease forwards .15s;
}
.ga-stats-group {
  display: flex;
  align-items: center;
  gap: 28px;
}
.ga-stat-item { text-align: center; }
.ga-stat-value {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.ga-stat-label {
  font-size: .65rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: 3px;
}
.ga-stat-divider {
  width: 1px; height: 36px;
  background: rgba(13,27,62,.09);
}
/* View toggle */
.ga-view-toggle { display: flex; gap: 6px; }
.ga-view-btn {
  width: 34px; height: 34px;
  border-radius: 6px;
  border: 1.5px solid rgba(13,27,62,.12);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .15s;
}
.ga-view-btn.active {
  background: var(--navy);
  border-color: var(--navy);
}
.ga-view-btn svg {
  width: 16px; height: 16px;
  stroke: var(--muted); fill: none;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
.ga-view-btn.active svg { stroke: #fff; }

/* ──────────────────────────────────────────
   5. PHOTO GRID
─────────────────────────────────────────── */
.ga-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  opacity: 0;
  animation: ga-fadeUp .65s ease forwards .25s;
}
.ga-photo-grid.ga-view-2col { grid-template-columns: repeat(2, 1fr); }
.ga-photo-grid.ga-view-4col { grid-template-columns: repeat(4, 1fr); }

.ga-photo-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: #dde5f0;
}
/* First item: featured/wide */
.ga-photo-item:first-child {
  grid-column: span 2;
  aspect-ratio: 16/9;
}
.ga-photo-grid.ga-view-2col .ga-photo-item:first-child { grid-column: span 1; }
.ga-photo-grid.ga-view-4col .ga-photo-item:first-child { grid-column: span 2; }

.ga-photo-img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .38s ease;
}
.ga-photo-item:hover .ga-photo-img { transform: scale(1.06); }

/* Hover overlay */
.ga-photo-overlay {
  position: absolute; inset: 0;
  background: rgba(13,27,62,.55);
  opacity: 0;
  transition: opacity .22s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ga-photo-item:hover .ga-photo-overlay { opacity: 1; }
.ga-photo-zoom-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  border: 2px solid rgba(255,255,255,.6);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(.7);
  transition: transform .22s;
}
.ga-photo-item:hover .ga-photo-zoom-icon { transform: scale(1); }
.ga-photo-zoom-icon svg {
  width: 20px; height: 20px;
  stroke: #fff; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

/* Index badge */
.ga-photo-index {
  position: absolute;
  bottom: 10px; right: 10px;
  background: rgba(0,0,0,.55);
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  opacity: 0;
  transition: opacity .2s;
}
.ga-photo-item:hover .ga-photo-index { opacity: 1; }

/* ──────────────────────────────────────────
   6. VIDEO GRID
─────────────────────────────────────────── */
.ga-video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  opacity: 0;
  animation: ga-fadeUp .65s ease forwards .3s;
}
.ga-video-item {
  background: #fff;
  border: 1px solid rgba(13,27,62,.09);
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow .2s, transform .2s;
}
.ga-video-item:hover {
  box-shadow: 0 6px 24px rgba(13,27,62,.1);
  transform: translateY(-2px);
}
.ga-video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--navy);
  overflow: hidden;
}
.ga-video-thumb-img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  opacity: .8;
}
.ga-video-play-btn {
  position: absolute; inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ga-play-circle {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(230,57,70,.9);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s, background .2s;
  box-shadow: 0 4px 20px rgba(0,0,0,.35);
}
.ga-video-item:hover .ga-play-circle {
  transform: scale(1.1);
  background: var(--red);
}
.ga-play-circle svg {
  width: 20px; height: 20px;
  fill: #fff;
  margin-left: 3px;
}
.ga-video-duration {
  position: absolute;
  bottom: 10px; right: 10px;
  background: rgba(0,0,0,.7);
  color: #fff;
  font-size: .7rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
}
.ga-video-info { padding: 14px 16px; }
.ga-video-title {
  font-size: .88rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 5px;
  line-height: 1.3;
}
.ga-video-meta {
  font-size: .7rem;
  color: var(--muted);
  display: flex;
  gap: 12px;
}

/* ──────────────────────────────────────────
   7. SECTION DIVIDER
─────────────────────────────────────────── */
.ga-section-div {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 36px 0 22px;
}
.ga-section-div h3 {
  font-size: .8rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.ga-div-line {
  flex: 1; height: 1px;
  background: rgba(13,27,62,.09);
}
.ga-div-count {
  font-size: .7rem;
  font-weight: 700;
  color: var(--muted);
  background: #f0f2f6;
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

/* ──────────────────────────────────────────
   8. RELATED ALBUMS
─────────────────────────────────────────── */
.ga-related { margin-top: 56px; }
.ga-related-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.ga-related-header h2 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
}
.ga-view-all {
  font-size: .76rem;
  font-weight: 700;
  color: var(--red);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap .15s;
}
.ga-view-all:hover { gap: 8px; }
.ga-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.ga-rel-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  display: block;
  text-decoration: none;
  height: 180px;
  transition: transform .2s;
}
.ga-rel-card:hover { transform: translateY(-3px); }
.ga-rel-img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  filter: brightness(.8);
  transition: transform .35s, filter .35s;
}
.ga-rel-card:hover .ga-rel-img { transform: scale(1.05); filter: brightness(.65); }
.ga-rel-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 40%, rgba(0,0,0,.7) 100%);
}
.ga-rel-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 14px 14px 12px;
}
.ga-rel-title {
  font-size: .82rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 3px;
}
.ga-rel-date {
  font-size: .65rem;
  color: rgba(255,255,255,.6);
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.ga-rel-badge {
  position: absolute;
  top: 10px; left: 10px;
  padding: 3px 8px;
  border-radius: 3px;
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.ga-rel-badge-photo { background: rgba(13,27,62,.8); color: #fff; }
.ga-rel-badge-video { background: var(--red); color: #fff; }

/* ──────────────────────────────────────────
   9. LIGHTBOX
─────────────────────────────────────────── */
.ga-lightbox {
  position: fixed; inset: 0;
  background: rgba(8,14,32,.96);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.ga-lightbox.open { display: flex; }

/* Top bar */
.ga-lb-topbar {
  position: absolute;
  top: 0; left: 0; right: 0;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to bottom, rgba(0,0,0,.6), transparent);
  z-index: 2;
}
.ga-lb-title-group {
  display: flex;
  flex-direction: column;
}
.ga-lb-album-name {
  font-size: .7rem;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.ga-lb-photo-name {
  font-size: .88rem;
  font-weight: 700;
  color: #fff;
  margin-top: 2px;
}
.ga-lb-actions { display: flex; gap: 8px; }
.ga-lb-icon-btn {
  width: 36px; height: 36px;
  border-radius: 6px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  color: #fff; cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
}
.ga-lb-icon-btn:hover { background: rgba(255,255,255,.2); }
.ga-lb-icon-btn svg {
  width: 16px; height: 16px;
  stroke: #fff; fill: none;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
.ga-lb-close {
  width: 36px; height: 36px;
  border-radius: 6px;
  background: rgba(230,57,70,.85);
  border: none; color: #fff;
  cursor: pointer; font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
}
.ga-lb-close:hover { background: var(--red); }

/* Main image */
.ga-lb-main {
  position: relative;
  width: 100%; flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 80px 100px;
  overflow: hidden;
}
.ga-lb-img {
  max-width: 100%; max-height: 100%;
  object-fit: contain;
  border-radius: 6px; display: block;
  transition: opacity .25s, transform .25s;
  box-shadow: 0 20px 80px rgba(0,0,0,.6);
}
.ga-lb-img.ga-animating { opacity: 0; transform: scale(.95); }

/* Prev / Next */
.ga-lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff; cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s, transform .15s;
  z-index: 3;
}
.ga-lb-nav:hover {
  background: rgba(255,255,255,.25);
  transform: translateY(-50%) scale(1.08);
}
.ga-lb-nav svg {
  width: 20px; height: 20px;
  stroke: #fff; fill: none;
  stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round;
}
.ga-lb-prev { left: 20px; }
.ga-lb-next { right: 20px; }

/* Bottom bar */
.ga-lb-bottombar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px 24px 20px;
  background: linear-gradient(to top, rgba(0,0,0,.7), transparent);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 2;
}
.ga-lb-counter {
  font-size: .76rem;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  letter-spacing: .06em;
}
.ga-lb-thumbs {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding-bottom: 4px;
  max-width: 600px;
  scrollbar-width: none;
}
.ga-lb-thumbs::-webkit-scrollbar { display: none; }
.ga-lb-thumb {
  width: 52px; height: 38px;
  border-radius: 4px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color .15s, opacity .15s;
  opacity: .55;
}
.ga-lb-thumb.active { border-color: var(--red); opacity: 1; }
.ga-lb-thumb:hover { opacity: .85; }
.ga-lb-thumb-img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.ga-lb-hint {
  position: absolute;
  bottom: 90px; right: 24px;
  font-size: .65rem;
  color: rgba(255,255,255,.3);
  letter-spacing: .03em;
}

/* ──────────────────────────────────────────
   10. TOAST
─────────────────────────────────────────── */
.ga-toast {
  position: fixed;
  bottom: 28px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--navy);
  color: #fff;
  padding: 11px 22px;
  border-radius: 8px;
  font-size: .82rem;
  font-weight: 600;
  opacity: 0;
  transition: all .3s;
  z-index: 99999;
  pointer-events: none;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(0,0,0,.3);
}
.ga-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ──────────────────────────────────────────
   RESPONSIVE
─────────────────────────────────────────── */
@media (max-width: 960px) {
  .ga-hero-inner { grid-template-columns: 1fr; gap: 20px; padding: 0 36px; }
  .ga-hero-actions { flex-direction: row; }
  .ga-hero { padding: 40px 0 36px; }
  .ga-breadcrumb { padding: 11px 36px; }
  .ga-wrap { padding: 28px 36px 60px; }
  .ga-photo-grid { grid-template-columns: repeat(2, 1fr); }
  .ga-photo-item:first-child { grid-column: span 2; }
  .ga-video-grid { grid-template-columns: 1fr; }
  .ga-related-grid { grid-template-columns: 1fr 1fr; }
  .ga-lb-main { padding: 70px 60px 90px; }
  .ga-stats-bar { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
  .ga-hero-inner { padding: 0 20px; }
  .ga-hero-title { font-size: clamp(1.5rem, 6vw, 2rem); }
  .ga-breadcrumb { padding: 11px 20px; }
  .ga-wrap { padding: 20px 20px 48px; }
  .ga-related-grid { grid-template-columns: 1fr; }
}
/* ═══════════════════════════════════════════════
   FECE NEPAL – GALLERY ALBUM DETAIL PAGE
   Design tokens identical to brand system
   ═══════════════════════════════════════════════ */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Inter', sans-serif;
    background: #f0f2f6;
    color: #6b7a8d;
    -webkit-font-smoothing: antialiased;
  }

  /* ══════════ NAV ══════════ */
  .nav {
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
    padding: 0 48px;
    height: 68px;
    display: flex; align-items: center; justify-content: space-between;
    position: sticky; top: 0; z-index: 200;
    box-shadow: 0 1px 8px rgba(0,0,0,.06);
  }
  .nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
  .nav-logo-icon {
    width: 42px; height: 42px; background: #c8102e; border-radius: 3px;
    display: flex; align-items: center; justify-content: center;
    font-size: 9px; font-weight: 800; color: #fff; letter-spacing: 1px;
  }
  .nav-logo-text { display: flex; flex-direction: column; line-height: 1; }
  .brand { font-size: 18px; font-weight: 800; color: #1a2744; letter-spacing: .3px; }
  .brand em { color: #c8102e; font-style: normal; }
  .tagline { font-size: 8px; color: #9aabb8; margin-top: 2px; font-weight: 500; }
  .nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
  .nav-links a {
    font-size: 12px; font-weight: 600; color: #1a2744; text-decoration: none;
    padding: 6px 10px; border-radius: 4px; letter-spacing: .2px;
    transition: color .15s; opacity: .8;
  }
  .nav-links a:hover { color: #c8102e; opacity: 1; }
  .nav-links a.active { color: #c8102e; opacity: 1; }

  /* ══════════ BREADCRUMB ══════════ */
  .breadcrumb {
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
    padding: 13px 48px;
    display: flex; align-items: center; gap: 8px;
    font-size: 12px; font-weight: 500;
  }
  .breadcrumb a { color: #1a2744; text-decoration: none; transition: color .14s; }
  .breadcrumb a:hover { color: #c8102e; }
  .breadcrumb .sep { color: #ced5e0; }
  .breadcrumb .cur { color: #c8102e; font-weight: 600; }

  /* ══════════ ALBUM HERO ══════════ */
  .album-hero {
    background: #0d1b3e;
    border-bottom: 3px solid #c8102e;
    padding: 52px 80px 48px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px; align-items: center;
    position: relative; overflow: hidden;
  }
  .album-hero::after {
    content: '';
    position: absolute; top: -80px; right: -80px;
    width: 360px; height: 360px; border-radius: 50%;
    background: radial-gradient(circle, rgba(200,16,46,.1) 0%, transparent 70%);
    pointer-events: none;
  }
  .ah-eyebrow {
    display: flex; align-items: center; gap: 10px; margin-bottom: 14px;
  }
  .ah-eyebrow-line { width: 24px; height: 2px; background: #c8102e; flex-shrink: 0; }
  .ah-eyebrow-text {
    font-size: 10px; font-weight: 700; letter-spacing: 2.5px;
    text-transform: uppercase; color: #c8102e;
  }
  .ah-title {
    font-size: 36px; font-weight: 900;
    color: #fff; line-height: 1.05;
    letter-spacing: -.5px; margin-bottom: 14px;
  }
  .ah-meta {
    display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  }
  .ah-meta-item {
    display: flex; align-items: center; gap: 7px;
    font-size: 12px; color: rgba(255,255,255,.55); font-weight: 500;
  }
  .ah-meta-item svg { width: 14px; height: 14px; stroke: rgba(255,255,255,.45); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
  .ah-meta-divider { width: 1px; height: 14px; background: rgba(255,255,255,.15); }
  /* Type badge in hero */
  .ah-type-badge {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 5px 14px; border-radius: 4px;
    font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  }
  .ah-type-badge.photo { background: rgba(255,255,255,.12); color: #fff; }
  .ah-type-badge.video { background: #c8102e; color: #fff; }
  .ah-type-badge svg { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

  /* Right: action buttons */
  .ah-actions {
    display: flex; flex-direction: column; gap: 10px; flex-shrink: 0;
    position: relative; z-index: 1;
  }
  .ah-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 20px; border-radius: 6px;
    font-size: 12px; font-weight: 700; cursor: pointer;
    border: none; font-family: 'Inter', sans-serif;
    letter-spacing: .3px; white-space: nowrap; transition: all .18s;
    text-decoration: none;
  }
  .ah-btn svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
  .btn-primary { background: #c8102e; color: #fff; }
  .btn-primary:hover { background: #a80d25; }
  .btn-ghost { background: rgba(255,255,255,.1); color: #fff; border: 1px solid rgba(255,255,255,.2); }
  .btn-ghost:hover { background: rgba(255,255,255,.18); }

  /* ══════════ PAGE WRAP ══════════ */
  .page-wrap {
    max-width: 1160px;
    margin: 0 auto;
    padding: 44px 40px 80px;
  }

  /* ══════════ ALBUM STATS BAR ══════════ */
  .stats-bar {
    display: flex; align-items: center; justify-content: space-between;
    background: #fff; border: 1px solid #e2e8f0; border-radius: 10px;
    padding: 18px 28px; margin-bottom: 28px;
    flex-wrap: wrap; gap: 16px;
  }
  .stats-group { display: flex; align-items: center; gap: 28px; }
  .stat-item { text-align: center; }
  .stat-value { font-size: 22px; font-weight: 800; color: #1a2744; line-height: 1; }
  .stat-label { font-size: 10px; font-weight: 600; color: #9aabb8; letter-spacing: 1px; text-transform: uppercase; margin-top: 3px; }
  .stat-divider { width: 1px; height: 36px; background: #e2e8f0; }
  /* View toggle buttons */
  .view-toggle { display: flex; gap: 6px; }
  .view-btn {
    width: 34px; height: 34px; border-radius: 6px;
    border: 1.5px solid #e2e8f0; background: #fff;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: all .15s;
  }
  .view-btn.active { background: #1a2744; border-color: #1a2744; }
  .view-btn svg { width: 16px; height: 16px; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
  .view-btn svg { stroke: #6b7a8d; fill: none; }
  .view-btn.active svg { stroke: #fff; }

  /* ══════════ PHOTO GRID ══════════ */
  .photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    transition: all .2s;
  }
  .photo-grid.view-2col { grid-template-columns: repeat(2, 1fr); }
  .photo-grid.view-4col { grid-template-columns: repeat(4, 1fr); }

  .photo-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
    background: #dde5f0;
  }
  /* First item in grid: featured / wider */
  .photo-item:first-child {
    grid-column: span 2;
    aspect-ratio: 16/9;
  }
  .photo-grid.view-2col .photo-item:first-child { grid-column: span 1; }
  .photo-grid.view-4col .photo-item:first-child { grid-column: span 2; }

  .photo-item-img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform .38s ease;
  }
  .photo-item:hover .photo-item-img { transform: scale(1.06); }

  /* Hover overlay */
  .photo-item-overlay {
    position: absolute; inset: 0;
    background: rgba(13, 27, 62, .55);
    opacity: 0; transition: opacity .22s;
    display: flex; align-items: center; justify-content: center;
  }
  .photo-item:hover .photo-item-overlay { opacity: 1; }
  .photo-zoom-icon {
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(255,255,255,.2);
    border: 2px solid rgba(255,255,255,.6);
    display: flex; align-items: center; justify-content: center;
    transform: scale(.7); transition: transform .22s;
  }
  .photo-item:hover .photo-zoom-icon { transform: scale(1); }
  .photo-zoom-icon svg { width: 20px; height: 20px; stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

  /* Photo index badge */
  .photo-index {
    position: absolute; bottom: 10px; right: 10px;
    background: rgba(0,0,0,.55); color: #fff;
    font-size: 10px; font-weight: 700; padding: 3px 8px;
    border-radius: 4px; opacity: 0; transition: opacity .2s;
  }
  .photo-item:hover .photo-index { opacity: 1; }

  /* ══════════ VIDEO GRID ══════════ */
  .video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .video-item {
    background: #fff; border: 1px solid #e2e8f0;
    border-radius: 10px; overflow: hidden;
    cursor: pointer; transition: box-shadow .2s, transform .2s;
  }
  .video-item:hover { box-shadow: 0 6px 24px rgba(26,39,68,.1); transform: translateY(-2px); }
  .video-thumb {
    position: relative; aspect-ratio: 16/9; background: #0d1b3e; overflow: hidden;
  }
  .video-thumb-img { width: 100%; height: 100%; object-fit: cover; display: block; opacity: .8; }
  .video-play-btn {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
  }
  .play-circle {
    width: 52px; height: 52px; border-radius: 50%;
    background: rgba(200,16,46,.9);
    display: flex; align-items: center; justify-content: center;
    transition: transform .2s, background .2s;
    box-shadow: 0 4px 20px rgba(0,0,0,.35);
  }
  .video-item:hover .play-circle { transform: scale(1.1); background: #c8102e; }
  .play-circle svg { width: 20px; height: 20px; fill: #fff; margin-left: 3px; }
  .video-duration {
    position: absolute; bottom: 10px; right: 10px;
    background: rgba(0,0,0,.7); color: #fff;
    font-size: 11px; font-weight: 600; padding: 3px 8px; border-radius: 4px;
  }
  .video-info { padding: 14px 16px; }
  .video-title { font-size: 14px; font-weight: 700; color: #1a2744; margin-bottom: 5px; line-height: 1.3; }
  .video-meta { font-size: 11px; color: #9aabb8; display: flex; gap: 12px; }

  /* ══════════ SECTION DIVIDER ══════════ */
  .section-divider {
    display: flex; align-items: center; gap: 14px;
    margin: 36px 0 22px;
  }
  .section-divider h3 {
    font-size: 13px; font-weight: 700; color: #1a2744;
    letter-spacing: 1px; text-transform: uppercase; white-space: nowrap;
  }
  .divider-line { flex: 1; height: 1px; background: #e2e8f0; }
  .divider-count {
    font-size: 11px; font-weight: 700; color: #9aabb8;
    background: #f0f2f6; padding: 3px 10px; border-radius: 20px; white-space: nowrap;
  }

  /* ══════════ RELATED ALBUMS ══════════ */
  .related-section { margin-top: 56px; }
  .related-header {
    display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px;
  }
  .related-header h2 { font-size: 18px; font-weight: 800; color: #1a2744; }
  .view-all-link {
    font-size: 12px; font-weight: 700; color: #c8102e;
    text-decoration: none; display: flex; align-items: center; gap: 4px;
    transition: gap .15s;
  }
  .view-all-link:hover { gap: 8px; }
  .related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .rel-card {
    position: relative; border-radius: 8px; overflow: hidden;
    cursor: pointer; display: block; text-decoration: none;
    height: 180px; transition: transform .2s;
  }
  .rel-card:hover { transform: translateY(-3px); }
  .rel-card-img { width: 100%; height: 100%; object-fit: cover; display: block; filter: brightness(.8); transition: transform .35s, filter .35s; }
  .rel-card:hover .rel-card-img { transform: scale(1.05); filter: brightness(.65); }
  .rel-card-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0) 40%, rgba(0,0,0,.7) 100%); }
  .rel-card-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 14px 14px 12px; }
  .rel-card-title { font-size: 13px; font-weight: 700; color: #fff; line-height: 1.2; margin-bottom: 3px; }
  .rel-card-date { font-size: 10px; color: rgba(255,255,255,.6); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
  .rel-badge { position: absolute; top: 10px; left: 10px; padding: 3px 8px; border-radius: 3px; font-size: 9px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
  .rel-badge.photo { background: rgba(26,39,68,.8); color: #fff; }
  .rel-badge.video { background: #c8102e; color: #fff; }

  /* ══════════ LIGHTBOX ══════════ */
  .lightbox {
    position: fixed; inset: 0;
    background: rgba(8, 14, 32, .96);
    z-index: 9999;
    display: none; align-items: center; justify-content: center;
    flex-direction: column;
  }
  .lightbox.open { display: flex; }

  /* Top bar */
  .lb-topbar {
    position: absolute; top: 0; left: 0; right: 0;
    padding: 16px 24px;
    display: flex; align-items: center; justify-content: space-between;
    background: linear-gradient(to bottom, rgba(0,0,0,.6), transparent);
    z-index: 2;
  }
  .lb-title-group { display: flex; flex-direction: column; }
  .lb-album-name { font-size: 11px; font-weight: 600; color: rgba(255,255,255,.5); letter-spacing: 1px; text-transform: uppercase; }
  .lb-photo-name { font-size: 14px; font-weight: 700; color: #fff; margin-top: 2px; }
  .lb-topbar-actions { display: flex; gap: 8px; }
  .lb-icon-btn {
    width: 36px; height: 36px; border-radius: 6px;
    background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
    color: #fff; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background .15s; font-family: inherit;
  }
  .lb-icon-btn:hover { background: rgba(255,255,255,.2); }
  .lb-icon-btn svg { width: 16px; height: 16px; stroke: #fff; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
  .lb-close-btn {
    width: 36px; height: 36px; border-radius: 6px;
    background: rgba(200,16,46,.85); border: none;
    color: #fff; cursor: pointer; font-size: 18px;
    display: flex; align-items: center; justify-content: center;
    transition: background .15s;
  }
  .lb-close-btn:hover { background: #c8102e; }

  /* Main image area */
  .lb-main {
    position: relative; width: 100%; flex: 1;
    display: flex; align-items: center; justify-content: center;
    padding: 80px 80px 100px;
    overflow: hidden;
  }
  .lb-img {
    max-width: 100%; max-height: 100%;
    object-fit: contain;
    border-radius: 6px;
    display: block;
    transition: opacity .25s, transform .25s;
    box-shadow: 0 20px 80px rgba(0,0,0,.6);
  }
  .lb-img.animating { opacity: 0; transform: scale(.95); }

  /* Prev / Next buttons */
  .lb-nav-btn {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 48px; height: 48px; border-radius: 50%;
    background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.18);
    color: #fff; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background .15s, transform .15s;
    z-index: 3;
  }
  .lb-nav-btn:hover { background: rgba(255,255,255,.25); transform: translateY(-50%) scale(1.08); }
  .lb-nav-btn svg { width: 20px; height: 20px; stroke: #fff; fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
  .lb-prev { left: 20px; }
  .lb-next { right: 20px; }

  /* Bottom bar: counter + thumbnails */
  .lb-bottombar {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 16px 24px 20px;
    background: linear-gradient(to top, rgba(0,0,0,.7), transparent);
    display: flex; flex-direction: column; align-items: center; gap: 12px;
    z-index: 2;
  }
  .lb-counter {
    font-size: 12px; font-weight: 600; color: rgba(255,255,255,.6);
    letter-spacing: 1px;
  }
  .lb-thumbnails {
    display: flex; gap: 6px; overflow-x: auto; padding-bottom: 4px;
    max-width: 600px; scrollbar-width: none;
  }
  .lb-thumbnails::-webkit-scrollbar { display: none; }
  .lb-thumb {
    width: 52px; height: 38px; border-radius: 4px; overflow: hidden;
    border: 2px solid transparent; cursor: pointer; flex-shrink: 0;
    transition: border-color .15s, opacity .15s;
    opacity: .55;
  }
  .lb-thumb.active { border-color: #c8102e; opacity: 1; }
  .lb-thumb:hover { opacity: .85; }
  .lb-thumb-img { width: 100%; height: 100%; object-fit: cover; display: block; }

  /* Keyboard hint */
  .lb-hint {
    position: absolute; bottom: 90px; right: 24px;
    font-size: 10px; color: rgba(255,255,255,.3);
    letter-spacing: .5px;
  }

  /* ══════════ TOAST ══════════ */
  .toast {
    position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%) translateY(20px);
    background: #1a2744; color: #fff;
    padding: 11px 22px; border-radius: 8px;
    font-size: 13px; font-weight: 600;
    opacity: 0; transition: all .3s; z-index: 99999;
    pointer-events: none; white-space: nowrap;
    box-shadow: 0 4px 20px rgba(0,0,0,.3);
  }
  .toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

  /* ══════════ RESPONSIVE ══════════ */
  @media (max-width: 900px) {
    .nav { padding: 0 20px; }
    .nav-links { display: none; }
    .breadcrumb { padding: 11px 20px; }
    .album-hero { grid-template-columns: 1fr; gap: 20px; padding: 36px 24px; }
    .ah-actions { flex-direction: row; }
    .page-wrap { padding: 28px 20px 60px; }
    .photo-grid { grid-template-columns: repeat(2, 1fr); }
    .photo-item:first-child { grid-column: span 2; }
    .video-grid { grid-template-columns: 1fr; }
    .related-grid { grid-template-columns: 1fr 1fr; }
    .lb-main { padding: 70px 60px 90px; }
    .stats-bar { flex-direction: column; align-items: flex-start; }
  }