/* PAGE: Photography */

.photo-header {
  padding-top: calc(var(--nav-h) + var(--ruler-h) + 72px);
  padding-bottom: 56px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.photo-header .dot-grid-subtle {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.photo-header::before {
  content: '';
  position: absolute;
  top: calc(var(--nav-h) + var(--ruler-h) + 16px);
  left: 20px;
  width: 16px;
  height: 16px;
  border-top: 1.5px solid var(--primary);
  border-left: 1.5px solid var(--primary);
  opacity: 0.4;
  z-index: 2;
}

.photo-header .container {
  position: relative;
  z-index: 1;
}

.photo-header__eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--primary);
  letter-spacing: 0.05em;
  margin-bottom: var(--space-5);
  opacity: 0.7;
}

.photo-header__title {
  font-family: var(--font-display);
  font-weight: var(--weight-extrabold);
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
  margin: 0 0 var(--space-5);
  max-width: 900px;
}

.photo-header__subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 720px;
  line-height: 1.7;
  margin: 0;
}

.photography-page {
  padding: var(--space-12) 0 var(--space-24);
}

.photo-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}

@media (min-width: 768px) {
  .photo-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-5);
  }
}

@media (min-width: 1024px) {
  .photo-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--space-6);
  }
}

.photo-gallery__figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.photo-gallery__figure:hover {
  border-color: var(--border-bright);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.photo-gallery__figure :is(picture, img) {
  display: block;
  width: 100%;
  height: 100%;
}

.photo-gallery__img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--surface-raised);
  transition: opacity 0.2s ease, filter 0.2s ease;
}

.photo-gallery__figure:hover .photo-gallery__img {
  filter: brightness(1.03);
}

.photo-gallery__caption {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  padding: var(--space-3) var(--space-4);
  border-top: 1px solid var(--border);
  background: var(--surface);
  line-height: 1.5;
}

.photo-gallery__figure:hover .photo-gallery__caption {
  color: var(--text-secondary);
}

@media (prefers-reduced-motion: reduce) {
  .photo-gallery__figure,
  .photo-gallery__img,
  .photo-gallery__caption {
    transition: none;
  }
  .photo-gallery__figure:hover {
    transform: none;
  }
}
