/* ============================
   Photo Gallery Page
   Extends theme.css + locations.css
   ============================ */

.gallery-page-hero {
  padding: 140px 60px 60px;
  position: relative;
}

.gallery-page-hero::before {
  content: '';
  position: absolute;
  top: 40px;
  right: -80px;
  width: 55%;
  height: 70%;
  background: radial-gradient(ellipse at center, var(--accent-dim) 0%, transparent 65%);
  pointer-events: none;
}

.gallery-page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.gallery-back-bar { margin-bottom: 24px; }

.gallery-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.gallery-page-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 16px;
}

.gallery-page-title em {
  font-style: italic;
  color: var(--accent);
}

.gallery-page-tagline {
  font-size: 1rem;
  color: var(--fg-muted);
  max-width: 520px;
  line-height: 1.7;
  margin-top: 8px;
}

.gallery-page-body {
  padding: 40px 60px 80px;
}

@media (max-width: 900px) {
  .gallery-page-hero { padding: 120px 32px 60px; }
  .gallery-page-body { padding: 0 32px 80px; }
}
