/* ============================================
   PHOTO MODAL
   ============================================ */
.photo-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(59, 42, 30, 0.6);
  backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
}
.photo-modal-content {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 34px;
  max-width: 640px;
  width: 90%;
  text-align: center;
  position: relative;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.4);
  animation: cardIn 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.pm-close {
  position: absolute;
  top: 14px;
  right: 16px;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
  border-radius: 50%;
  transition: 0.3s;
}
.pm-close:hover {
  background: var(--paper-soft);
  color: var(--maroon);
}
.pm-photo {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4/3;
  margin: 8px auto 20px;
  border-radius: 2px;
  overflow: hidden;
  background: var(--paper-dark);
  box-shadow: 0 6px 20px rgba(74, 22, 32, 0.2);
}
.pm-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pm-title {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--maroon-deep);
  font-size: 1.3rem;
  margin-bottom: 8px;
}
.pm-desc {
  color: var(--ink-soft);
  font-size: 1.05rem;
}
