:root {
  --bg: #efede4;
  --ink: #171717;
  --muted: #5c5c55;
  --paper-shadow: rgba(0, 0, 0, 0.12);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  min-height: 100vh;
  background: #dcd8ca;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  display: grid;
  place-items: center;
  padding: 20px;
}

.frame {
  width: min(92vw, 920px);
  aspect-ratio: 4 / 3;
  background: var(--bg);
  border: 10px solid #222;
  box-shadow: 0 18px 60px var(--paper-shadow);
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.header, .footer {
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
}

.image-wrap {
  padding: 0 24px;
  display: grid;
  place-items: center;
}

.image-wrap img {
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(1) contrast(1.08) saturate(0.2);
}

.location {
  color: var(--muted);
  font-size: 13px;
}

.date {
  font-weight: 700;
}

@media (max-width: 640px) {
  .frame { width: 100vw; aspect-ratio: auto; min-height: 100vh; border-width: 0; }
  body { padding: 0; }
}
