:root {
  --bg: #000;
  --ink: #f2f2f2;
  --muted: #8a8a8a;
  --ghost: rgba(255, 255, 255, 0.7);
  --font-sans: "Helvetica Neue", Helvetica, Arial, system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html, body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
a:hover { opacity: 0.55; }

.app {
  min-height: 100svh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

.header {
  z-index: 20;
  width: min(1200px, calc(100% - 10vw));
  margin: 0 auto;
  padding: 2rem 0 1.25rem;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  line-height: 1.35;
  text-transform: uppercase;
}
.mast {
  margin: 0;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
}

.stage {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(1200px, calc(100% - 6vw));
  margin: 0 auto;
  padding: 0 0 4.5rem;
}

.video-wrap {
  position: relative;
  width: 100%;
  background: #000;
}
.clip {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(78vh, 820px);
  background: #000;
}
.note {
  margin: clamp(2rem, 4vw, 3rem) 0 0;
  max-width: 32ch;
  text-align: center;
  font-size: 0.68rem;
  line-height: 1.55;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.38);
}

.foot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  padding: 0 5vw 2.25rem;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.foot__home {
  letter-spacing: 0.12em;
  text-transform: none;
  font-size: 0.72rem;
}

@media (max-width: 639px) {
  .header { padding-top: 1.5rem; font-size: 0.65rem; }
  .clip { max-height: min(56vh, 520px); }
}
