.photographer-wrap {
  max-width: 1120px;
  margin: 28px auto;
  padding: 0 20px 28px;
}

.photographer-hero {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 28px;

  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 24px;
  align-items: center;
}

.photographer-hero-text {
  max-width: 620px;
}

.photographer-kicker {
  margin: 0 0 8px;
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #80552d;
  background: #f5e2bf;
  border: 1px solid #ddb57c;
}

.photographer-hero h1 {
  margin: 0 0 8px;
  font-size: clamp(30px, 6vw, 52px);
  line-height: 1.04;
  color: #2f241f;
}

.photographer-hero p {
  margin: 0 0 14px;
  color: var(--muted);
  max-width: 620px;
}

.photographer-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.photographer-cta .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 700;
  border: 1px solid var(--border);
}

.photographer-cta .btn.primary {
  background: linear-gradient(180deg, #dca463 0%, #c98a45 100%);
  border-color: #b4773d;
  color: #fff;
}

.photographer-cta .btn.secondary {
  background: #fff;
  color: var(--text);
}

.photographer-hero-image {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.photographer-hero-image img {
  width: 100%;
  max-width: 260px;
  height: 260px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.photographer-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.photographer-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px;
}

.photographer-card h2 {
  margin: 0 0 6px;
  font-size: 18px;
  color: #7d552d;
}

.photographer-card p {
  margin: 0;
  color: var(--muted);
}

.photo-gallery {
  margin-top: 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 16px;
}

.photo-gallery h2 {
  margin: 0 0 10px;
  color: #7d552d;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.gallery-grid img {
  width: 100%;
  max-height: 420px;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  display: block;
  border: 1px solid var(--border);
  background: #f8f8f8;
  padding: 6px;
}

@media (max-width: 900px) {
  .photographer-hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .photographer-hero-text {
    max-width: 100%;
  }

  .photographer-hero p {
    max-width: 100%;
  }

  .photographer-cta {
    justify-content: center;
  }

  .photographer-hero-image {
    justify-content: center;
  }

  .photographer-hero-image img {
    max-width: 220px;
    height: 220px;
  }

  .photographer-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid img {
    height: 260px;
  }
}