:root {
  --amber: #c47a2c;
  --gel: #f3ead8;
  --fixer: #1a1814;
  --silver: #8a8680;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: Georgia, "Iowan Old Style", serif;
  background: var(--gel);
  color: var(--fixer);
  line-height: 1.8;
}
h1, h2, h3 { font-family: Palatino, Georgia, serif; }
a { color: #9a5a1c; }
.safe { height: 5px; background: var(--amber); }
.contactsheet {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 5vw;
  background: #fff8ec;
}
.contactsheet img { width: 56px; height: 56px; }
.contactsheet h1 { margin: 0; font-size: 17px; }
.contactsheet h1 a { color: inherit; text-decoration: none; }
.contactsheet p { margin: 3px 0 0; color: var(--amber); font-size: 12px; letter-spacing: .1em; }
.strip {
  display: flex;
  flex-wrap: wrap;
  background: var(--fixer);
}
.strip a {
  color: var(--gel);
  text-decoration: none;
  padding: 11px 13px;
  font-size: 14px;
}
.strip a:hover, .strip a.exp { background: var(--amber); color: var(--fixer); }
.tray { width: min(880px, 92vw); margin: 28px auto 70px; }
.negatif h2 { font-size: clamp(24px, 4vw, 34px); margin: 0 0 12px; line-height: 1.3; }
.negatif img { width: 100%; margin: 12px 0; }
.proofs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}
.proofs a {
  background: #fff8ec;
  border-top: 3px solid var(--amber);
  padding: 16px 18px;
  text-decoration: none;
  color: inherit;
}
.frame {
  background: #fff8ec;
  border: 1px solid #e0d4bc;
  padding: 26px 28px;
}
.frame h2 { margin-top: 0; color: #9a5a1c; }
.fix {
  background: #fff8ec;
  border-top: 3px solid var(--fixer);
  padding: 22px 5vw 40px;
  font-size: 13px;
}
.fix a { margin-right: 12px; }
@media (max-width: 720px) {
  .proofs { grid-template-columns: 1fr; }
}
