@font-face {
  font-family: "Playfair";
  src: url("fonts/PlayfairDisplay-Italic-Variable.ttf") format("truetype");
  font-weight: 400 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "PlayfairRoman";
  src: url("fonts/PlayfairDisplay-Variable.ttf") format("truetype");
  font-weight: 400 700;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat-Variable.ttf") format("truetype");
  font-weight: 300 600;
  font-display: swap;
}

:root {
  --sand: #e8d7b8;
  --foam: #f6f1e8;
  --ink: #0b1418;
  --muted: #c9c0b2;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  min-height: 100%;
  background: var(--ink);
  color: var(--foam);
  font-family: "Montserrat", "Avenir Next", sans-serif;
}

.film {
  position: fixed;
  inset: 0;
  z-index: 0;
}

.film i {
  position: absolute;
  inset: 0;
  background: var(--bg) center / cover no-repeat;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.6s ease, transform 8s ease;
}

.film i.is-on {
  opacity: 1;
  transform: scale(1);
}

.veil {
  position: fixed;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to top, rgba(8, 12, 16, 0.88) 0%, rgba(8, 12, 16, 0.35) 42%, rgba(8, 12, 16, 0.28) 100%);
}

.top, .stage, .foot { position: relative; z-index: 2; }

.top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 28px 40px 0;
}

.mark, .place, .kicker {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--sand);
}

.stage {
  max-width: 1180px;
  margin: 0 auto;
  padding: 12vh 40px 40px;
}

h1 {
  font-family: "Playfair", Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(56px, 9vw, 120px);
  line-height: 0.95;
  margin: 12px 0 22px;
}

.lead {
  max-width: 34em;
  font-size: 18px;
  line-height: 1.5;
  color: var(--muted);
}

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

.door {
  display: grid;
  grid-template-rows: 220px auto;
  color: inherit;
  text-decoration: none;
  background: rgba(10, 14, 18, 0.42);
  border: 1px solid rgba(232, 215, 184, 0.22);
  overflow: hidden;
  min-height: 360px;
}

.door-photo {
  display: block;
  background: var(--bg) center / cover no-repeat;
  transition: transform 0.7s ease;
}

.door:hover .door-photo { transform: scale(1.05); }
.door:hover { border-color: var(--sand); }

.door-copy {
  display: block;
  padding: 22px 24px 26px;
}

.door-copy em {
  display: block;
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 8px;
}

.door-copy strong {
  display: block;
  font-family: "Playfair", Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: 32px;
  margin-bottom: 10px;
}

.door-copy span {
  display: block;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.45;
}

.foot {
  padding: 28px 40px 32px;
}

.foot p {
  font-size: 11px;
  letter-spacing: 0.04em;
  color: rgba(201, 192, 178, 0.55);
}

@media (max-width: 820px) {
  .top, .stage, .foot { padding-left: 20px; padding-right: 20px; }
  .doors { grid-template-columns: 1fr; }
  .stage { padding-top: 8vh; }
  h1 { font-size: 56px; }
  .door { grid-template-rows: 180px auto; }
}
