/* Film-ish photography contact sheet (fictional). */

:root {
  --paper: #f6f2ea;
  --ink: #0e0e10;
  --inkSoft: rgba(14, 14, 16, 0.78);
  --smoke: rgba(14, 14, 16, 0.08);
  --accent: #b0002a;
  --gold: #c9a227;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0.01em;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.032) 0 1px, transparent 1px 6px),
    repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.02) 0 1px, transparent 1px 9px),
    radial-gradient(circle at 18% 18%, rgba(176, 0, 42, 0.085), transparent 55%),
    radial-gradient(circle at 72% 78%, rgba(201, 162, 39, 0.085), transparent 55%);
  mix-blend-mode: multiply;
  opacity: 0.95;
}

a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(176, 0, 42, 0.35);
}

a:hover {
  background: rgba(176, 0, 42, 0.07);
}

.brandLink {
  color: var(--ink);
  border-bottom: none;
}

.brandLink:hover {
  background: rgba(0, 0, 0, 0.05);
}

.wrap {
  max-width: 980px;
  margin: 0 auto;
  padding: 42px 18px 64px;
  position: relative;
}

.topline {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 14px;
}

.brand {
  margin: 0;
  font-family: Georgia, "Times New Roman", Times, serif;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 46px;
  line-height: 1;
}

.tag {
  margin-top: 10px;
  text-transform: uppercase;
  letter-spacing: 0.34em;
  font-size: 12px;
  color: var(--inkSoft);
}

.issue {
  margin-top: 10px;
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(14, 14, 16, 0.62);
}

.issue .badge {
  border-color: rgba(14, 14, 16, 0.55);
  background: rgba(255, 255, 255, 0.45);
}

.crumb {
  margin-top: 8px;
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.crumb a {
  color: var(--inkSoft);
  border-bottom-color: rgba(14, 14, 16, 0.18);
}

.crumb a:hover {
  color: var(--ink);
  background: rgba(0, 0, 0, 0.05);
}

.booking {
  text-align: right;
}

.booking .label {
  text-transform: uppercase;
  letter-spacing: 0.26em;
  font-size: 11px;
  color: var(--inkSoft);
}

.booking .jokeNumber {
  margin-top: 4px;
  display: inline-block;
  white-space: nowrap;
  font-family: "Arial Rounded MT Bold", "Avenir Next Rounded", "SF Pro Rounded", "Helvetica Rounded", "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: 35px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  color: var(--accent);
  transform: skewX(-8deg) rotate(-1deg);
  text-shadow: 2px 2px 0 rgba(14, 14, 16, 0.18);
}

.booking .number {
  display: inline-block;
  margin-top: 6px;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 20px;
  letter-spacing: 0.02em;
}

.booking .note {
  margin-top: 8px;
  font-size: 12px;
  color: var(--inkSoft);
  max-width: 34ch;
}

.booking .meta {
  margin-top: 10px;
  font-size: 11px;
  color: var(--inkSoft);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.booking .meta div { margin-top: 6px; }

.booking .meta span {
  display: inline-block;
  min-width: 54px;
  color: rgba(14, 14, 16, 0.62);
}

.grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 18px;
  margin-top: 22px;
}

.hero {
  border: 1px solid var(--ink);
  background: rgba(255, 255, 255, 0.45);
  padding: 18px;
  min-height: 220px;
  position: relative;
}

.stamp {
  position: absolute;
  top: 14px;
  right: 14px;
  border: 2px solid var(--accent);
  padding: 6px 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 10px;
  color: var(--accent);
  transform: rotate(-2deg);
  background: rgba(246, 242, 234, 0.88);
}

.headline {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 34px;
  line-height: 1.05;
}

.headline span {
  color: var(--accent);
}

.copy {
  font-size: 14px;
  line-height: 1.5;
  max-width: 58ch;
  color: var(--ink);
}

.pullquote {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--smoke);
  font-family: Georgia, "Times New Roman", Times, serif;
  font-style: italic;
  color: var(--inkSoft);
}

.stats {
  border: 1px solid var(--ink);
  padding: 18px;
  background: rgba(0, 0, 0, 0.02);
}

.stats h2,
.section h2 {
  margin: 0 0 12px;
  font-size: 12px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--inkSoft);
}

.stats dl {
  margin: 0;
  display: grid;
  grid-template-columns: 118px 1fr;
  row-gap: 8px;
  column-gap: 12px;
  font-size: 13px;
}

.stats dt {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
  color: var(--inkSoft);
}

.stats dd {
  margin: 0;
  font-family: Georgia, "Times New Roman", Times, serif;
}

.badge {
  display: inline-block;
  border: 1px solid var(--ink);
  padding: 2px 8px;
  font-family: "Courier New", Courier, monospace;
  font-size: 12px;
  background: rgba(255, 255, 255, 0.55);
}

.section {
  margin-top: 22px;
  border-top: 1px solid var(--ink);
  padding-top: 18px;
}

.lede {
  margin: 0 0 14px;
  max-width: 78ch;
  font-size: 14px;
  line-height: 1.5;
  color: var(--inkSoft);
}

.roll {
  margin-top: 14px;
}

.roll h3 {
  margin: 0 0 10px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--inkSoft);
}

.rollNote {
  margin: -2px 0 12px;
  max-width: 78ch;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(14, 14, 16, 0.68);
  font-family: Georgia, "Times New Roman", Times, serif;
  font-style: italic;
}

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

.photo {
  margin: 0;
  border: 1px solid var(--ink);
  background: rgba(255, 255, 255, 0.35);
  padding: 10px;
}

.photo a {
  display: block;
  border-bottom: none;
}

.photo a:hover {
  background: transparent;
}

.photo img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  background: rgba(14, 14, 16, 0.04);
  border: 1px solid rgba(14, 14, 16, 0.75);
  display: block;
}

.photo figcaption {
  margin-top: 8px;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 12px;
  letter-spacing: 0.03em;
  line-height: 1.35;
  color: rgba(14, 14, 16, 0.7);
}

.miniNote {
  margin-top: 12px;
  max-width: 78ch;
  font-size: 12px;
  line-height: 1.45;
  color: var(--inkSoft);
}

.contactSheet {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.frame {
  border: 1px solid var(--ink);
  background: rgba(255, 255, 255, 0.35);
  padding: 12px;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.frame .cap {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--inkSoft);
}

.frame .subcap {
  margin-top: 6px;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 16px;
  line-height: 1.15;
}

.shot {
  margin-top: 10px;
  height: 132px;
  border: 1px solid rgba(14, 14, 16, 0.75);
  background: rgba(14, 14, 16, 0.06);
  position: relative;
  overflow: hidden;
}

.shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.shot::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.14), transparent 55%),
    radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.10), transparent 55%),
    repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.14) 0 1px, transparent 1px 3px);
  mix-blend-mode: multiply;
  opacity: 0.55;
}

.shot::after {
  content: "PHOTO";
  position: absolute;
  bottom: 8px;
  right: 8px;
  font-family: "Courier New", Courier, monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(14, 14, 16, 0.62);
  background: rgba(246, 242, 234, 0.78);
  border: 1px solid rgba(14, 14, 16, 0.45);
  padding: 2px 6px;
}

.shot.s1 { background-image: linear-gradient(135deg, rgba(176, 0, 42, 0.25), transparent 55%), linear-gradient(0deg, rgba(0, 0, 0, 0.18), transparent 65%); }
.shot.s2 { background-image: linear-gradient(135deg, rgba(201, 162, 39, 0.25), transparent 55%), linear-gradient(0deg, rgba(0, 0, 0, 0.20), transparent 65%); }
.shot.s3 { background-image: linear-gradient(135deg, rgba(14, 14, 16, 0.18), transparent 55%), linear-gradient(0deg, rgba(0, 0, 0, 0.16), transparent 65%); }
.shot.s4 { background-image: linear-gradient(135deg, rgba(176, 0, 42, 0.14), rgba(0, 0, 0, 0.22)), radial-gradient(circle at 60% 35%, rgba(255, 255, 255, 0.14), transparent 60%); }
.shot.s5 { background-image: linear-gradient(135deg, rgba(201, 162, 39, 0.14), rgba(0, 0, 0, 0.18)), radial-gradient(circle at 35% 65%, rgba(255, 255, 255, 0.10), transparent 60%); }
.shot.s6 { background-image: linear-gradient(135deg, rgba(14, 14, 16, 0.16), rgba(0, 0, 0, 0.24)), radial-gradient(circle at 25% 35%, rgba(255, 255, 255, 0.12), transparent 60%); }

.frame .desc {
  margin-top: 10px;
  font-size: 12px;
  line-height: 1.35;
  color: var(--inkSoft);
}

.frame .desc div { margin-top: 6px; }

.frame .desc .badge {
  font-size: 11px;
  padding: 1px 6px;
  margin-right: 6px;
  background: rgba(255, 255, 255, 0.4);
}

.frame .code {
  font-family: "Courier New", Courier, monospace;
  font-size: 12px;
  color: rgba(14, 14, 16, 0.7);
}

.rules {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 12px;
}

.rules .card {
  border: 1px solid var(--ink);
  padding: 12px;
  background: rgba(255, 255, 255, 0.35);
}

.rules .card h3 {
  margin: 0 0 8px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--inkSoft);
}

.rules .card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
}

.rules .card ul {
  margin: 8px 0 0 18px;
  padding: 0;
}

.rules .card li {
  margin: 6px 0;
  font-size: 13px;
  line-height: 1.35;
}

.rules .card ul.tight li { margin: 4px 0; }

.footer {
  margin-top: 26px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 12px;
  color: var(--inkSoft);
  border-top: 2px solid var(--ink);
  padding-top: 14px;
}

.footer a {
  border-bottom-color: rgba(14, 14, 16, 0.22);
  color: var(--ink);
}

.footer a:hover {
  background: rgba(0, 0, 0, 0.05);
}

.fineprint {
  max-width: 72ch;
}

.gold {
  color: var(--gold);
  letter-spacing: 0.08em;
}

@media (max-width: 860px) {
  .topline {
    flex-direction: column;
    align-items: flex-start;
  }

  .booking {
    text-align: left;
  }

  .booking .jokeNumber {
    font-size: 31px;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .photo img {
    height: 200px;
  }

  .contactSheet {
    grid-template-columns: 1fr;
  }

  .rules {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .gallery {
    grid-template-columns: 1fr;
  }
}
