/* ============================================
   AEAN STUDIOS — PHOTOGRAPHY
   ============================================ */

.photo-hero {
  position: relative;
  height: 70vh;
  height: 70dvh;
  min-height: 460px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.photo-hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.95);
}
.photo-hero-veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,21,18,0.35) 0%, rgba(15,21,18,0.92) 100%);
}
.photo-hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}
.photo-hero-content .eyebrow { color: var(--bronze-light); margin-bottom: 1rem; }
.photo-hero-content h1 { font-size: clamp(2.4rem, 5.4vw, 4.4rem); color: var(--ivory); line-height: 1.08; }

.category-head {
  margin-bottom: clamp(2rem, 4vw, 3rem);
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cat-index {
  font-family: var(--font-label);
  font-size: 0.85rem;
  color: var(--bronze);
  letter-spacing: 0.1em;
}
.category-head h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  color: var(--ivory);
}
.category-head p {
  font-size: 0.95rem;
  color: var(--stone-dim);
  max-width: 380px;
  margin-left: auto;
}
@media (max-width: 700px) {
  .category-head p { margin-left: 0; }
}

.photo-masonry {
  column-count: 3;
  column-gap: 1.2rem;
  padding: 0 var(--gutter);
}
.m-item {
  overflow: hidden;
  background: var(--ink-soft);
  margin-bottom: 1.2rem;
  break-inside: avoid;
}
.m-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.8s var(--ease);
}
.m-item:hover img { transform: scale(1.04); }

.photo-masonry-2col { column-count: 2; }
.photo-masonry-3col { column-count: 3; }

@media (max-width: 980px) {
  .photo-masonry, .photo-masonry-3col { column-count: 2; }
}
@media (max-width: 620px) {
  .photo-masonry, .photo-masonry-2col, .photo-masonry-3col { column-count: 1; }
}

.cta-strip {
  background: var(--ink-soft);
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  text-align: center;
}
.cta-strip h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); color: var(--ivory); margin-bottom: 1.6rem; max-width: 700px; margin-left: auto; margin-right: auto; }
.cta-strip-sub {
  font-size: 0.98rem;
  color: var(--stone-dim);
  max-width: 480px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}
