/* ============================================================
   CLOSING — full-height closing scene + footer
   ============================================================ */

.closing {
  position: relative;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
}

.closing video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.06) brightness(0.72);
}

.closing::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(0,0,0,0.3), rgba(0,0,0,0.92) 100%),
    linear-gradient(to bottom, rgba(0,0,0,0.5), transparent 35%, rgba(0,0,0,0.78));
  z-index: 1;
}

.closing .inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 80px clamp(28px, 5vw, 80px);
}

.closing h2 {
  font-family: var(--serif);
  font-variation-settings: "opsz" 144, "SOFT" 80, "WONK" 0;
  font-weight: 250;
  font-size: clamp(36px, 7vw, 116px);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--bone);
  max-width: 1280px;
  margin-bottom: 72px;
}
.closing h2 em {
  font-family: var(--italic);
  font-style: italic;
  color: var(--umber-glow);
  font-weight: 300;
  font-variation-settings: "opsz" 72;
}

.closing .foot {
  position: absolute;
  bottom: 28px;
  left: 0; right: 0;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 clamp(20px, 4vw, 44px);
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--bone-faint);
  flex-wrap: wrap;
  gap: 8px;
}
.closing .foot em { color: var(--umber); font-style: normal; }
.closing .foot .right { text-align: right; line-height: 2; }

/* Mobile */
@media (max-width: 700px) {
  .closing .inner { padding: 60px 24px; }
  .closing h2 { margin-bottom: 48px; }
}
@media (max-width: 480px) {
  .closing .foot {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    bottom: 20px;
  }
  .closing .foot .right { text-align: left; line-height: 1.8; }
}
