  .page-hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: flex-end;
    padding: 80px 0 64px;
    overflow: hidden;
  }

  .page-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
  }

  .page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .page-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
      linear-gradient(
        135deg,
        rgba(30, 47, 61, 0.94) 0%,
        rgba(30, 47, 61, 0.88) 40%,
        rgba(44, 66, 82, 0.78) 70%,
        rgba(61, 90, 110, 0.7) 100%
      );
  }

  .page-hero-content {
    position: relative;
    z-index: 2;
    padding-top: 100px;
    max-width: 720px;
  }

  .page-hero-content .section-label {
    color: var(--color-gold-light);
  }

  .page-hero-content h1 {
    font-size: 2.4rem;
    color: var(--color-white);
    margin-bottom: 16px;
    line-height: 1.15;
  }

  .page-hero-text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    max-width: 620px;
  }

  @media (min-width: 768px) {
    .page-hero {
      min-height: 460px;
    }

    .page-hero-content h1 {
      font-size: 3rem;
    }
  }

  .gallery-section {
    padding: 80px 0 96px;
    background: var(--color-gray-50);
  }

  .masonry {
    columns: 2;
    column-gap: 16px;
  }

  .masonry-item {
    break-inside: avoid;
    margin-bottom: 16px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    line-height: 0;
  }

  .masonry-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .masonry-overlay {
    position: absolute;
    inset: 0;
    background: rgba(30, 47, 61, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.35s ease;
    color: rgba(255, 255, 255, 0);
  }

  .masonry-item:hover .masonry-overlay {
    background: rgba(30, 47, 61, 0.3);
    color: rgba(255, 255, 255, 0.95);
  }

  .masonry-item:hover img {
    transform: scale(1.05);
  }

  @media (min-width: 640px) {
    .masonry {
      columns: 2;
      column-gap: 20px;
    }

    .masonry-item {
      margin-bottom: 20px;
    }
  }

  @media (min-width: 1024px) {
    .masonry {
      columns: 3;
      column-gap: 24px;
    }

    .masonry-item {
      margin-bottom: 24px;
      border-radius: 14px;
    }
  }

  .lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
  }

  .lightbox.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .lightbox-content img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4);
    transition: opacity 0.3s ease;
  }

  .lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
    z-index: 10;
  }

  .lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
  }

  .lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.85);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
    z-index: 10;
  }

  .lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-50%) scale(1.05);
  }

  .lightbox-prev {
    left: 20px;
  }

  .lightbox-next {
    right: 20px;
  }

  .lightbox-counter {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.05em;
  }

  @media (max-width: 640px) {
    .lightbox-nav {
      width: 42px;
      height: 42px;
    }

    .lightbox-nav svg {
      width: 22px;
      height: 22px;
    }

    .lightbox-prev {
      left: 12px;
    }

    .lightbox-next {
      right: 12px;
    }

    .lightbox-close {
      top: 12px;
      right: 12px;
      width: 42px;
      height: 42px;
    }
  }
